diff options
author | Gibson Fahnestock <gibfahn@gmail.com> | 2017-03-09 18:11:21 +0000 |
---|---|---|
committer | Myles Borins <mylesborins@google.com> | 2017-04-18 20:01:49 -0400 |
commit | db61c952de2aa4591c60f4772fa62f0bc3474577 (patch) | |
tree | 9e585bb427b689eeb8ec431f6e8515595c7e6e5d /test/parallel/test-http-eof-on-connect.js | |
parent | de636980668017c2ed155ba6f75ac5e6a2af647b (diff) | |
download | node-new-db61c952de2aa4591c60f4772fa62f0bc3474577.tar.gz |
test: use eslint to fix var->const/let
Manually fix issues that eslint --fix couldn't do automatically.
Backport-PR-URL: https://github.com/nodejs/node/pull/11775
PR-URL: https://github.com/nodejs/node/pull/10685
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'test/parallel/test-http-eof-on-connect.js')
-rw-r--r-- | test/parallel/test-http-eof-on-connect.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-http-eof-on-connect.js b/test/parallel/test-http-eof-on-connect.js index 6f70dc2391..f67e45ed40 100644 --- a/test/parallel/test-http-eof-on-connect.js +++ b/test/parallel/test-http-eof-on-connect.js @@ -1,13 +1,13 @@ 'use strict'; require('../common'); -var net = require('net'); -var http = require('http'); +const net = require('net'); +const http = require('http'); // This is a regression test for https://github.com/joyent/node/issues/44 // It is separate from test-http-malformed-request.js because it is only // reproduceable on the first packet on the first connection to a server. -var server = http.createServer(function(req, res) {}); +const server = http.createServer(function(req, res) {}); server.listen(0); server.on('listening', function() { |