summaryrefslogtreecommitdiff
path: root/test/parallel
diff options
context:
space:
mode:
authorSakthipriyan Vairamani <thechargingvolcano@gmail.com>2015-10-08 23:11:29 +0530
committerSakthipriyan Vairamani <thechargingvolcano@gmail.com>2015-10-27 23:03:33 +0530
commitaaf9b488e28cb904be2ceec032b3fb2dbe532d6d (patch)
tree15cc90c71c8288c740ddfcb31fcb29a566b906bc /test/parallel
parentb0e7b362c2ffe91d785446f420629e52eb793508 (diff)
downloadnode-new-aaf9b488e28cb904be2ceec032b3fb2dbe532d6d.tar.gz
lib,test: update let to const where applicable
As per the `prefer-const` eslint rule, few instances of `let` have been identified to be better with `const`. This patch updates all those instances. Refer: https://github.com/nodejs/node/issues/3118 PR-URL: https://github.com/nodejs/node/pull/3152 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Diffstat (limited to 'test/parallel')
-rw-r--r--test/parallel/test-async-wrap-check-providers.js13
-rw-r--r--test/parallel/test-buffer-zero-fill-reset.js2
-rw-r--r--test/parallel/test-http-flush-headers.js2
-rw-r--r--test/parallel/test-http-response-multiheaders.js8
-rw-r--r--test/parallel/test-tls-socket-default-options.js2
-rw-r--r--test/parallel/test-util-inspect.js2
-rw-r--r--test/parallel/test-zlib-truncated.js4
7 files changed, 17 insertions, 16 deletions
diff --git a/test/parallel/test-async-wrap-check-providers.js b/test/parallel/test-async-wrap-check-providers.js
index 2d7d318885..45dd8d4f24 100644
--- a/test/parallel/test-async-wrap-check-providers.js
+++ b/test/parallel/test-async-wrap-check-providers.js
@@ -73,16 +73,17 @@ process.on('SIGINT', () => process.exit());
// Run from closed net server above.
function checkTLS() {
- let options = {
+ const options = {
key: fs.readFileSync(common.fixturesDir + '/keys/ec-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/ec-cert.pem')
};
- let server = tls.createServer(options, noop).listen(common.PORT, function() {
- tls.connect(common.PORT, { rejectUnauthorized: false }, function() {
- this.destroy();
- server.close();
+ const server = tls.createServer(options, noop)
+ .listen(common.PORT, function() {
+ tls.connect(common.PORT, { rejectUnauthorized: false }, function() {
+ this.destroy();
+ server.close();
+ });
});
- });
}
zlib.createGzip();
diff --git a/test/parallel/test-buffer-zero-fill-reset.js b/test/parallel/test-buffer-zero-fill-reset.js
index 52203a997e..56fb77818a 100644
--- a/test/parallel/test-buffer-zero-fill-reset.js
+++ b/test/parallel/test-buffer-zero-fill-reset.js
@@ -14,6 +14,6 @@ function testUint8Array(ui) {
for (let i = 0; i < 100; i++) {
new Buffer(0);
- let ui = new Uint8Array(65);
+ const ui = new Uint8Array(65);
assert.ok(testUint8Array(ui), 'Uint8Array is not zero-filled');
}
diff --git a/test/parallel/test-http-flush-headers.js b/test/parallel/test-http-flush-headers.js
index e3c9761cff..5e91a4643a 100644
--- a/test/parallel/test-http-flush-headers.js
+++ b/test/parallel/test-http-flush-headers.js
@@ -10,7 +10,7 @@ server.on('request', function(req, res) {
server.close();
});
server.listen(common.PORT, '127.0.0.1', function() {
- let req = http.request({
+ const req = http.request({
method: 'GET',
host: '127.0.0.1',
port: common.PORT,
diff --git a/test/parallel/test-http-response-multiheaders.js b/test/parallel/test-http-response-multiheaders.js
index da6cd73a38..572ce2e128 100644
--- a/test/parallel/test-http-response-multiheaders.js
+++ b/test/parallel/test-http-response-multiheaders.js
@@ -17,13 +17,13 @@ const norepeat = [
const server = http.createServer(function(req, res) {
var num = req.headers['x-num'];
if (num == 1) {
- for (let name of norepeat) {
+ for (const name of norepeat) {
res.setHeader(name, ['A', 'B']);
}
res.setHeader('X-A', ['A', 'B']);
} else if (num == 2) {
- let headers = {};
- for (let name of norepeat) {
+ const headers = {};
+ for (const name of norepeat) {
headers[name] = ['A', 'B'];
}
headers['X-A'] = ['A', 'B'];
@@ -44,7 +44,7 @@ server.listen(common.PORT, common.mustCall(function() {
{port:common.PORT, headers:{'x-num': n}},
common.mustCall(function(res) {
if (n == 2) server.close();
- for (let name of norepeat) {
+ for (const name of norepeat) {
assert.equal(res.headers[name], 'A');
}
assert.equal(res.headers['x-a'], 'A, B');
diff --git a/test/parallel/test-tls-socket-default-options.js b/test/parallel/test-tls-socket-default-options.js
index 3af03a0ba9..7b41d0f5a9 100644
--- a/test/parallel/test-tls-socket-default-options.js
+++ b/test/parallel/test-tls-socket-default-options.js
@@ -33,7 +33,7 @@ function testSocketOptions(socket, socketOptions) {
setImmediate(runTests);
});
}).listen(common.PORT, function() {
- let c = new tls.TLSSocket(socket, socketOptions);
+ const c = new tls.TLSSocket(socket, socketOptions);
c.connect(common.PORT, function() {
c.end(sent);
});
diff --git a/test/parallel/test-util-inspect.js b/test/parallel/test-util-inspect.js
index 444c0168a4..320d5e444a 100644
--- a/test/parallel/test-util-inspect.js
+++ b/test/parallel/test-util-inspect.js
@@ -135,7 +135,7 @@ map.set(1, 2);
var mirror = Debug.MakeMirror(map.entries(), true);
var vals = mirror.preview();
var valsOutput = [];
-for (let o of vals) {
+for (const o of vals) {
valsOutput.push(o);
}
diff --git a/test/parallel/test-zlib-truncated.js b/test/parallel/test-zlib-truncated.js
index 9a716f8d0b..46bd83960b 100644
--- a/test/parallel/test-zlib-truncated.js
+++ b/test/parallel/test-zlib-truncated.js
@@ -22,11 +22,11 @@ const inputString = 'ΩΩLorem ipsum dolor sit amet, consectetur adipiscing el'
].forEach(function(methods) {
zlib[methods.comp](inputString, function(err, compressed) {
assert(!err);
- let truncated = compressed.slice(0, compressed.length / 2);
+ const truncated = compressed.slice(0, compressed.length / 2);
// sync sanity
assert.doesNotThrow(function() {
- let decompressed = zlib[methods.decompSync](compressed);
+ const decompressed = zlib[methods.decompSync](compressed);
assert.equal(decompressed, inputString);
});