summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-localaddress-bind-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-localaddress-bind-error.js')
-rw-r--r--test/parallel/test-http-localaddress-bind-error.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-localaddress-bind-error.js b/test/parallel/test-http-localaddress-bind-error.js
index 51605fab6a..5b537b00e7 100644
--- a/test/parallel/test-http-localaddress-bind-error.js
+++ b/test/parallel/test-http-localaddress-bind-error.js
@@ -1,5 +1,5 @@
'use strict';
-require('../common');
+const common = require('../common');
var assert = require('assert');
var http = require('http');
@@ -24,7 +24,7 @@ server.listen(0, '127.0.0.1', function() {
method: 'GET',
localAddress: invalidLocalAddress
}, function(res) {
- assert.fail(null, null, 'unexpectedly got response from server');
+ common.fail('unexpectedly got response from server');
}).on('error', function(e) {
console.log('client got error: ' + e.message);
gotError = true;