mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
6510eb5ddc
Many tests use assert.fail(null, null, msg) where it would be simpler to use common.fail(msg). This is largely because common.fail() is fairly new. This commit makes the replacement when applicable. PR-URL: https://github.com/nodejs/node/pull/7735 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
|
|
const socket = net.connect(common.PORT, common.localhostIPv4, common.fail);
|
|
socket.on('error', common.fail);
|
|
socket.destroy();
|