summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-15 21:21:12 -0700
committerJames M Snell <jasnell@gmail.com>2016-04-18 17:19:11 -0700
commit31600735f40e02935b936802ff42d66d49e9769b (patch)
tree29093a1796aad2d127cf514dbe3202423c82ac43 /test/parallel/test-zlib.js
parentc1d82ac2ff15594840e2a1b9531b506ae067ed27 (diff)
downloadandroid-node-v8-31600735f40e02935b936802ff42d66d49e9769b.tar.gz
android-node-v8-31600735f40e02935b936802ff42d66d49e9769b.tar.bz2
android-node-v8-31600735f40e02935b936802ff42d66d49e9769b.zip
lib,test,tools: alignment on variable assignments
Correct alignment on variable assignments that span multiple lines in preparation for lint rule to enforce such alignment. PR-URL: https://github.com/nodejs/node/pull/6242 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-zlib.js')
-rw-r--r--test/parallel/test-zlib.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-zlib.js b/test/parallel/test-zlib.js
index f0b7e7bddc..cd2503b868 100644
--- a/test/parallel/test-zlib.js
+++ b/test/parallel/test-zlib.js
@@ -165,9 +165,9 @@ Object.keys(tests).forEach(function(file) {
// verify that the same exact buffer comes out the other end.
buf.on('data', function(c) {
var msg = file + ' ' +
- chunkSize + ' ' +
- JSON.stringify(opts) + ' ' +
- Def.name + ' -> ' + Inf.name;
+ chunkSize + ' ' +
+ JSON.stringify(opts) + ' ' +
+ Def.name + ' -> ' + Inf.name;
var ok = true;
var testNum = ++done;
for (var i = 0; i < Math.max(c.length, test.length); i++) {