summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-dns-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-net-dns-error.js')
-rw-r--r--test/parallel/test-net-dns-error.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-net-dns-error.js b/test/parallel/test-net-dns-error.js
index f5a1dcc6b1..aa288c5fde 100644
--- a/test/parallel/test-net-dns-error.js
+++ b/test/parallel/test-net-dns-error.js
@@ -4,13 +4,13 @@ const assert = require('assert');
const net = require('net');
-var host = '*'.repeat(256);
+const host = '*'.repeat(256);
function do_not_call() {
throw new Error('This function should not have been called.');
}
-var socket = net.connect(42, host, do_not_call);
+const socket = net.connect(42, host, do_not_call);
socket.on('error', common.mustCall(function(err) {
assert.equal(err.code, 'ENOTFOUND');
}));