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

@ -4,7 +4,7 @@ const assert = require('assert');
const http = require('http');
const url = require('url');
var testURL;
let testURL;
// make sure the basics work
function check(request) {
@ -17,7 +17,7 @@ function check(request) {
testURL.hostname + ':' + testURL.port);
}
var server = http.createServer(function(request, response) {
const server = http.createServer(function(request, response) {
// run the check function
check.call(this, request, response);
response.writeHead(200, {});
@ -29,7 +29,7 @@ server.listen(0, function() {
testURL = url.parse(`http://localhost:${this.address().port}`);
// make the request
var clientRequest = http.request(testURL);
const clientRequest = http.request(testURL);
// since there is a little magic with the agent
// make sure that an http request uses the http.Agent
assert.ok(clientRequest.agent instanceof http.Agent);