Skip to content

Commit 61eae92

Browse files
author
wafuwafu13
committed
test: fix lint
1 parent 005859a commit 61eae92

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

test/parallel/test-url-format-whatwg.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,28 @@ assert.strictEqual(
3737
// Any truthy value will be treated as true.
3838

3939
assert.strictEqual(
40-
url.format(myURL, { auth: false }),
41-
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
40+
url.format(myURL, { auth: false }),
41+
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
4242
);
4343

4444
assert.strictEqual(
45-
url.format(myURL, { auth: '' }),
46-
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
45+
url.format(myURL, { auth: '' }),
46+
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
4747
);
4848

4949
assert.strictEqual(
50-
url.format(myURL, { auth: 0 }),
51-
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
50+
url.format(myURL, { auth: 0 }),
51+
'http://xn--lck1c3crb1723bpq4a.com/a?a=b#c'
5252
);
5353

5454
assert.strictEqual(
55-
url.format(myURL, { auth: 1 }),
56-
'http://user:[email protected]/a?a=b#c'
55+
url.format(myURL, { auth: 1 }),
56+
'http://user:[email protected]/a?a=b#c'
5757
);
5858

5959
assert.strictEqual(
60-
url.format(myURL, { auth: {} }),
61-
'http://user:[email protected]/a?a=b#c'
60+
url.format(myURL, { auth: {} }),
61+
'http://user:[email protected]/a?a=b#c'
6262
);
6363

6464
assert.strictEqual(

0 commit comments

Comments
 (0)