summaryrefslogtreecommitdiff
path: root/test/sequential
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/sequential
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/sequential')
-rw-r--r--test/sequential/test-tls-honorcipherorder.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sequential/test-tls-honorcipherorder.js b/test/sequential/test-tls-honorcipherorder.js
index c33cd9eea6..7e93ac5a05 100644
--- a/test/sequential/test-tls-honorcipherorder.js
+++ b/test/sequential/test-tls-honorcipherorder.js
@@ -57,7 +57,7 @@ test1();
function test1() {
// Client has the preference of cipher suites by default
- test(false, 'AES256-SHA:DES-CBC-SHA:RC4-SHA','AES256-SHA', test2);
+ test(false, 'AES256-SHA:DES-CBC-SHA:RC4-SHA', 'AES256-SHA', test2);
}
function test2() {