summaryrefslogtreecommitdiff
path: root/test/parallel/test-querystring.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-03-05 15:50:22 -0800
committerRich Trott <rtrott@gmail.com>2018-03-07 19:06:44 -0800
commit3c31bfff6599cf68bda2552a92d982559bd64c5e (patch)
treed7f8aa1e07ff4050c575ee21d13c7613d13f178f /test/parallel/test-querystring.js
parent282e65cfe3d38c582b77939c26b9c00952805340 (diff)
downloadandroid-node-v8-3c31bfff6599cf68bda2552a92d982559bd64c5e.tar.gz
android-node-v8-3c31bfff6599cf68bda2552a92d982559bd64c5e.tar.bz2
android-node-v8-3c31bfff6599cf68bda2552a92d982559bd64c5e.zip
benchmark,lib,test,tools: use consistent quotes
In preparation for a linting rule, use consistent quotation for properties in objects. PR-URL: https://github.com/nodejs/node/pull/19156 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'test/parallel/test-querystring.js')
-rw-r--r--test/parallel/test-querystring.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-querystring.js b/test/parallel/test-querystring.js
index f4046c33a1..7b77a42a16 100644
--- a/test/parallel/test-querystring.js
+++ b/test/parallel/test-querystring.js
@@ -75,8 +75,8 @@ const qsTestCases = [
['foo&bar=baz', 'foo=&bar=baz', { foo: '', bar: 'baz' }],
['a=b&c&d=e', 'a=b&c=&d=e', { a: 'b', c: '', d: 'e' }],
['a=b&c=&d=e', 'a=b&c=&d=e', { a: 'b', c: '', d: 'e' }],
- ['a=b&=c&d=e', 'a=b&=c&d=e', { a: 'b', '': 'c', d: 'e' }],
- ['a=b&=&c=d', 'a=b&=&c=d', { a: 'b', '': '', c: 'd' }],
+ ['a=b&=c&d=e', 'a=b&=c&d=e', { 'a': 'b', '': 'c', 'd': 'e' }],
+ ['a=b&=&c=d', 'a=b&=&c=d', { 'a': 'b', '': '', 'c': 'd' }],
['&&foo=bar&&', 'foo=bar', { foo: 'bar' }],
['&', '', {}],
['&&&&', '', {}],