summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-cipher-list.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-01-30 21:46:45 -0800
committerRich Trott <rtrott@gmail.com>2016-02-02 12:48:08 -0800
commit8d61787f177e3002b87227d71f0b9707c7bb73d6 (patch)
tree56ef211648c11f4585a76882e2413e9d85d8acbc /test/parallel/test-tls-cipher-list.js
parent415625c2a50eb8067e89df0e87c24fb8228f34d4 (diff)
downloadandroid-node-v8-8d61787f177e3002b87227d71f0b9707c7bb73d6.tar.gz
android-node-v8-8d61787f177e3002b87227d71f0b9707c7bb73d6.tar.bz2
android-node-v8-8d61787f177e3002b87227d71f0b9707c7bb73d6.zip
test: fix variable redeclarations
I'm a fan of small changesets, but even I'm getting a little annoyed at me for opening all these PRs weeding out variable redeclarations. So I'm bundling a bunch of small changes here. PR-URL: https://github.com/nodejs/node/pull/4992 Reviewed-By: Michaƫl Zasso <mic.besace@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-tls-cipher-list.js')
-rw-r--r--test/parallel/test-tls-cipher-list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-tls-cipher-list.js b/test/parallel/test-tls-cipher-list.js
index f20a0a6a24..70c99dd91e 100644
--- a/test/parallel/test-tls-cipher-list.js
+++ b/test/parallel/test-tls-cipher-list.js
@@ -12,7 +12,7 @@ const defaultCoreList = require('constants').defaultCoreCipherList;
function doCheck(arg, check) {
var out = '';
- var arg = arg.concat([
+ arg = arg.concat([
'-pe',
'require("constants").defaultCipherList'
]);