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-invalidheaderfield.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-invalidheaderfield.js')
-rw-r--r-- | test/parallel/test-http-invalidheaderfield.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-http-invalidheaderfield.js b/test/parallel/test-http-invalidheaderfield.js index 9d4a12a952..aaed46c69c 100644 --- a/test/parallel/test-http-invalidheaderfield.js +++ b/test/parallel/test-http-invalidheaderfield.js @@ -5,7 +5,7 @@ const EventEmitter = require('events'); const http = require('http'); const ee = new EventEmitter(); -var count = 3; +let count = 3; const server = http.createServer(function(req, res) { assert.doesNotThrow(function() { @@ -24,7 +24,7 @@ server.listen(0, function() { assert.throws( function() { - var options = { + const options = { port: server.address().port, headers: {'testing 123': 123} }; @@ -38,7 +38,7 @@ server.listen(0, function() { assert.doesNotThrow( function() { - var options = { + const options = { port: server.address().port, headers: {'testing_123': 123} }; |