summaryrefslogtreecommitdiff
path: root/test/parallel/test-whatwg-url-searchparams-inspect.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-whatwg-url-searchparams-inspect.js')
-rw-r--r--test/parallel/test-whatwg-url-searchparams-inspect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-whatwg-url-searchparams-inspect.js b/test/parallel/test-whatwg-url-searchparams-inspect.js
index 9a56543637..163fa185ed 100644
--- a/test/parallel/test-whatwg-url-searchparams-inspect.js
+++ b/test/parallel/test-whatwg-url-searchparams-inspect.js
@@ -13,7 +13,7 @@ assert.strictEqual(util.inspect(sp.keys()),
"URLSearchParamsIterator { 'a', 'b', 'b' }");
assert.strictEqual(util.inspect(sp.values()),
"URLSearchParamsIterator { 'a', 'b', 'c' }");
-assert.strictEqual(util.inspect(sp.keys(), {breakLength: 1}),
+assert.strictEqual(util.inspect(sp.keys(), { breakLength: 1 }),
"URLSearchParamsIterator {\n 'a',\n 'b',\n 'b' }");
const iterator = sp.entries();