Skip to content

Commit

Permalink
test: remove common.PORT from dgram test
Browse files Browse the repository at this point in the history
Remove common.PORT from
test-dgram-send-callback-buffer-length-empty-address to eliminate
possibility that a dynamic port used in another test will collide
with common.PORT.

PR-URL: #12944
Refs: #12376
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <mhdawson@ibm.com>
  • Loading branch information
arturgvieira authored and jasnell committed May 23, 2017
1 parent 8a4f3b7 commit 511ee24
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -17,4 +17,6 @@ const onMessage = common.mustCall(function messageSent(err, bytes) {
client.close(); client.close();
}); });


client.send(buf, offset, len, common.PORT, onMessage); client.bind(0, () => client.send(buf, offset, len,
client.address().port,
onMessage));

0 comments on commit 511ee24

Please sign in to comment.