test: use eslint to fix var->const/let

Manually fix issues that eslint --fix couldn't do automatically.

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>
This commit is contained in:
Gibson Fahnestock 2017-01-08 13:19:00 +00:00
parent 1ef401ce92
commit 7a0e462f9f
730 changed files with 3387 additions and 3368 deletions

View file

@ -17,12 +17,12 @@ common.refreshTmpDir();
server.listen(common.PIPE, common.mustCall(function() {
var options = {
const options = {
socketPath: common.PIPE,
path: '/'
};
var req = http.get(options, common.mustCall(function(res) {
const req = http.get(options, common.mustCall(function(res) {
assert.strictEqual(res.statusCode, 200);
assert.strictEqual(res.headers['content-type'], 'text/plain');