summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib.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-zlib.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-zlib.js')
-rw-r--r--test/parallel/test-zlib.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-zlib.js b/test/parallel/test-zlib.js
index b3f193d0a6..1256d94a61 100644
--- a/test/parallel/test-zlib.js
+++ b/test/parallel/test-zlib.js
@@ -42,7 +42,7 @@ var testFiles = ['person.jpg', 'elipses.txt', 'empty.txt'];
if (process.env.FAST) {
zlibPairs = [[zlib.Gzip, zlib.Unzip]];
- var testFiles = ['person.jpg'];
+ testFiles = ['person.jpg'];
}
var tests = {};