Skip to content

Commit e94c604

Browse files
committed
Fix URLSearchParams constructor test
Fixes whatwg/url#220.
1 parent 3fc7f40 commit e94c604

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

url/urlsearchparams-constructor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
}, "Constructor with sequence of sequences of strings");
147147

148148
[
149-
{ "input": {"+": "%C2"}, "output": [[" ", "\uFFFD"]], "name": "object with +" },
149+
{ "input": {"+": "%C2"}, "output": [["+", "%C2"]], "name": "object with +" },
150150
{ "input": {c: "x", a: "?"}, "output": [["c", "x"], ["a", "?"]], "name": "object with two keys" },
151151
{ "input": [["c", "x"], ["a", "?"]], "output": [["c", "x"], ["a", "?"]], "name": "array with two keys" }
152152
].forEach((val) => {

0 commit comments

Comments
 (0)