summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-abort-event.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-client-abort-event.js')
-rw-r--r--test/parallel/test-http-client-abort-event.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-client-abort-event.js b/test/parallel/test-http-client-abort-event.js
index 00c989ca91..b62186e724 100644
--- a/test/parallel/test-http-client-abort-event.js
+++ b/test/parallel/test-http-client-abort-event.js
@@ -1,12 +1,12 @@
'use strict';
const common = require('../common');
const http = require('http');
-var server = http.createServer(function(req, res) {
+const server = http.createServer(function(req, res) {
res.end();
});
server.listen(0, common.mustCall(function() {
- var req = http.request({
+ const req = http.request({
port: this.address().port
}, common.fail);