summaryrefslogtreecommitdiff
path: root/test/parallel/test-sys.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-sys.js
parentd91e10b3bd4f3011befa91d68a4305a0f438c62e (diff)
downloadnode-new-e3f9335c407602f7bd5f61a8697198d05cb5653b.tar.gz
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-sys.js')
-rw-r--r--test/parallel/test-sys.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-sys.js b/test/parallel/test-sys.js
index a5631a5cb1..bbc8c09200 100644
--- a/test/parallel/test-sys.js
+++ b/test/parallel/test-sys.js
@@ -75,7 +75,7 @@ assert.equal('{ readonly: [Getter] }',
common.inspect({get readonly() {}}));
assert.equal('{ readwrite: [Getter/Setter] }',
- common.inspect({get readwrite() {},set readwrite(val) {}}));
+ common.inspect({get readwrite() {}, set readwrite(val) {}}));
assert.equal('{ writeonly: [Setter] }',
common.inspect({set writeonly(val) {}}));