summaryrefslogtreecommitdiff
path: root/test/parallel/test-whatwg-url-properties.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-whatwg-url-properties.js
parente9b72916790b21daa6d1caac3a9540e8cdadad57 (diff)
downloadnode-new-a68987c154fbc041ea6d03ffdafa447e8c8a26f5.tar.gz
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-whatwg-url-properties.js')
-rw-r--r--test/parallel/test-whatwg-url-properties.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-whatwg-url-properties.js b/test/parallel/test-whatwg-url-properties.js
index 60cf581ad8..340a51525e 100644
--- a/test/parallel/test-whatwg-url-properties.js
+++ b/test/parallel/test-whatwg-url-properties.js
@@ -19,9 +19,9 @@ for (const prop in url) {
// https://heycam.github.io/webidl/#es-attributes
// https://heycam.github.io/webidl/#es-stringifier
const expected = ['toString',
- 'href', 'origin', 'protocol',
- 'username', 'password', 'host', 'hostname', 'port',
- 'pathname', 'search', 'searchParams', 'hash'];
+ 'href', 'origin', 'protocol',
+ 'username', 'password', 'host', 'hostname', 'port',
+ 'pathname', 'search', 'searchParams', 'hash'];
assert.deepStrictEqual(props, expected);