Browse Source

test: console.log removed from test-net-localport

There seems to be an unecessary console log
happening in a test.

PR-URL: https://github.com/nodejs/node/pull/12483
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: David Cai <davidcai1993@yahoo.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
v6.x
Faiz Halde 8 years ago
committed by Myles Borins
parent
commit
50bfb28960
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 1
      test/parallel/test-net-localport.js

1
test/parallel/test-net-localport.js

@ -4,7 +4,6 @@ const assert = require('assert');
const net = require('net');
const server = net.createServer(function(socket) {
console.log(socket.remotePort);
assert.strictEqual(socket.remotePort, common.PORT);
socket.end();
socket.on('close', function() {

Loading…
Cancel
Save