mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 06:38:13 +00:00

Remove a handful of variables that are declared but never used in the tests for the net module. PR-URL: https://github.com/nodejs/node/pull/4430 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
23 lines
451 B
JavaScript
23 lines
451 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
connect({
|
|
host: 'localhost',
|
|
port: common.PORT,
|
|
localPort: 'foobar',
|
|
}, 'localPort should be a number: foobar');
|
|
|
|
connect({
|
|
host: 'localhost',
|
|
port: common.PORT,
|
|
localAddress: 'foobar',
|
|
}, 'localAddress should be a valid IP: foobar');
|
|
|
|
function connect(opts, msg) {
|
|
assert.throws(function() {
|
|
net.connect(opts);
|
|
}, msg);
|
|
}
|