summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib-dictionary-fail.js
diff options
context:
space:
mode:
authorRoman Reiss <me@silverwind.io>2015-06-28 17:42:35 +0200
committerRoman Reiss <me@silverwind.io>2015-06-29 19:04:16 +0200
commite3f9335c407602f7bd5f61a8697198d05cb5653b (patch)
tree83dd03e9d7d5e3bdcc6d1615a55b5481447502a8 /test/parallel/test-zlib-dictionary-fail.js
parentd91e10b3bd4f3011befa91d68a4305a0f438c62e (diff)
downloadandroid-node-v8-e3f9335c407602f7bd5f61a8697198d05cb5653b.tar.gz
android-node-v8-e3f9335c407602f7bd5f61a8697198d05cb5653b.tar.bz2
android-node-v8-e3f9335c407602f7bd5f61a8697198d05cb5653b.zip
tools: re-enable comma-spacing linter rule
The rule was disabled because of an eslint bug which is now resolved. All code in lib was already conforming and only test code needed a few changes to make the linter happy with this rule enabled. Ref: https://github.com/eslint/eslint/issues/2408 PR-URL: https://github.com/nodejs/io.js/pull/2072 Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com> Reviewed-by: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Alex Kocharin <alex@kocharin.ru>
Diffstat (limited to 'test/parallel/test-zlib-dictionary-fail.js')
-rw-r--r--test/parallel/test-zlib-dictionary-fail.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-zlib-dictionary-fail.js b/test/parallel/test-zlib-dictionary-fail.js
index ced829f8d4..b4a344ceef 100644
--- a/test/parallel/test-zlib-dictionary-fail.js
+++ b/test/parallel/test-zlib-dictionary-fail.js
@@ -12,7 +12,7 @@ var zlib = require('zlib');
}));
// String "test" encoded with dictionary "dict".
- stream.write(Buffer([0x78,0xBB,0x04,0x09,0x01,0xA5]));
+ stream.write(Buffer([0x78, 0xBB, 0x04, 0x09, 0x01, 0xA5]));
})();
// Should raise an error, not trigger an assertion in src/node_zlib.cc
@@ -24,5 +24,5 @@ var zlib = require('zlib');
}));
// String "test" encoded with dictionary "dict".
- stream.write(Buffer([0x78,0xBB,0x04,0x09,0x01,0xA5]));
+ stream.write(Buffer([0x78, 0xBB, 0x04, 0x09, 0x01, 0xA5]));
})();