summaryrefslogtreecommitdiff
path: root/test/parallel/test-domain-abort-on-uncaught.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-domain-abort-on-uncaught.js')
-rw-r--r--test/parallel/test-domain-abort-on-uncaught.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-domain-abort-on-uncaught.js b/test/parallel/test-domain-abort-on-uncaught.js
index a129b0858c..4f290d22e7 100644
--- a/test/parallel/test-domain-abort-on-uncaught.js
+++ b/test/parallel/test-domain-abort-on-uncaught.js
@@ -109,8 +109,8 @@ const tests = [
const server = net.createServer(function(conn) {
conn.pipe(conn);
});
- server.listen(common.PORT, common.localhostIPv4, function() {
- const conn = net.connect(common.PORT, common.localhostIPv4);
+ server.listen(0, common.localhostIPv4, function() {
+ const conn = net.connect(this.address().port, common.localhostIPv4);
conn.once('data', function() {
throw new Error('ok');
});