Skip to content

Commit 50bfb28

Browse files
fhaldeMylesBorins
authored andcommitted
test: console.log removed from test-net-localport
There seems to be an unecessary console log happening in a test. PR-URL: #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>
1 parent 768431c commit 50bfb28

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/parallel/test-net-localport.js

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const assert = require('assert');
44
const net = require('net');
55

66
const server = net.createServer(function(socket) {
7-
console.log(socket.remotePort);
87
assert.strictEqual(socket.remotePort, common.PORT);
98
socket.end();
109
socket.on('close', function() {

0 commit comments

Comments
 (0)