summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-no-cert-required.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-tls-no-cert-required.js')
-rw-r--r--test/parallel/test-tls-no-cert-required.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-tls-no-cert-required.js b/test/parallel/test-tls-no-cert-required.js
index 72e24c59f6..de723e73e8 100644
--- a/test/parallel/test-tls-no-cert-required.js
+++ b/test/parallel/test-tls-no-cert-required.js
@@ -10,6 +10,6 @@ var tls = require('tls');
// Omitting the cert or pfx option to tls.createServer() should not throw.
// AECDH-NULL-SHA is a no-authentication/no-encryption cipher and hence
// doesn't need a certificate.
-tls.createServer({ ciphers: 'AECDH-NULL-SHA' }).listen(common.PORT, function() {
+tls.createServer({ ciphers: 'AECDH-NULL-SHA' }).listen(0, function() {
this.close();
});