summaryrefslogtreecommitdiff
path: root/test/parallel/test-querystring.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-12-31 21:39:57 -0800
committerRich Trott <rtrott@gmail.com>2017-01-06 14:36:01 -0800
commita68987c154fbc041ea6d03ffdafa447e8c8a26f5 (patch)
treefd24a8cb10c8805a1ff6189b8e6663773d866f4e /test/parallel/test-querystring.js
parente9b72916790b21daa6d1caac3a9540e8cdadad57 (diff)
downloadandroid-node-v8-a68987c154fbc041ea6d03ffdafa447e8c8a26f5.tar.gz
android-node-v8-a68987c154fbc041ea6d03ffdafa447e8c8a26f5.tar.bz2
android-node-v8-a68987c154fbc041ea6d03ffdafa447e8c8a26f5.zip
benchmark,lib,test: adjust for linting
Formatting changes for upcoming linter update. PR-URL: https://github.com/nodejs/node/pull/10561 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Diffstat (limited to 'test/parallel/test-querystring.js')
-rw-r--r--test/parallel/test-querystring.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/parallel/test-querystring.js b/test/parallel/test-querystring.js
index 9f1e715eb9..7192ac6a1b 100644
--- a/test/parallel/test-querystring.js
+++ b/test/parallel/test-querystring.js
@@ -44,11 +44,11 @@ var qsTestCases = [
['foo=%EF%BF%BD', 'foo=%EF%BF%BD', {'foo': '\ufffd' }],
// See: https://github.com/joyent/node/issues/1707
['hasOwnProperty=x&toString=foo&valueOf=bar&__defineGetter__=baz',
- 'hasOwnProperty=x&toString=foo&valueOf=bar&__defineGetter__=baz',
- { hasOwnProperty: 'x',
- toString: 'foo',
- valueOf: 'bar',
- __defineGetter__: 'baz' }],
+ 'hasOwnProperty=x&toString=foo&valueOf=bar&__defineGetter__=baz',
+ { hasOwnProperty: 'x',
+ toString: 'foo',
+ valueOf: 'bar',
+ __defineGetter__: 'baz' }],
// See: https://github.com/joyent/node/issues/3058
['foo&bar=baz', 'foo=&bar=baz', { foo: '', bar: 'baz' }],
[null, '', {}],