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>
16 lines
320 B
JavaScript
16 lines
320 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var server = net.createServer(function(socket) {
|
|
});
|
|
server.listen(common.PORT, function() {
|
|
assert(false);
|
|
});
|
|
server.on('error', function(error) {
|
|
console.error(error);
|
|
assert(false);
|
|
});
|
|
server.close();
|