summaryrefslogtreecommitdiff
path: root/test/simple/test-querystring.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-querystring.js')
-rw-r--r--test/simple/test-querystring.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/simple/test-querystring.js b/test/simple/test-querystring.js
index 0900c3387a..de0d63102a 100644
--- a/test/simple/test-querystring.js
+++ b/test/simple/test-querystring.js
@@ -50,12 +50,12 @@ var qsTestCases = [
['foo=%zx', 'foo=%25zx', {'foo': '%zx'}],
['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' } ]
+ __defineGetter__: 'baz' }]
];
// [ wonkyQS, canonicalQS, obj ]