summaryrefslogtreecommitdiff
path: root/test/parallel/test-whatwg-url-custom-properties.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-whatwg-url-custom-properties.js')
-rw-r--r--test/parallel/test-whatwg-url-custom-properties.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-whatwg-url-custom-properties.js b/test/parallel/test-whatwg-url-custom-properties.js
index ee51efd539..1fbc3ab623 100644
--- a/test/parallel/test-whatwg-url-custom-properties.js
+++ b/test/parallel/test-whatwg-url-custom-properties.js
@@ -9,7 +9,7 @@ const assert = require('assert');
const urlToOptions = require('internal/url').urlToOptions;
const url = new URL('http://user:pass@foo.bar.com:21/aaa/zzz?l=24#test');
-const oldParams = url.searchParams; // for test of [SameObject]
+const oldParams = url.searchParams; // For test of [SameObject]
// To retrieve enumerable but not necessarily own properties,
// we need to use the for-in loop.