Skip to content

Commit

Permalink
Fix URLSearchParams constructor test
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Feb 2, 2017
1 parent 3fc7f40 commit e94c604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion url/urlsearchparams-constructor.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
}, "Constructor with sequence of sequences of strings");

[
{ "input": {"+": "%C2"}, "output": [[" ", "\uFFFD"]], "name": "object with +" },
{ "input": {"+": "%C2"}, "output": [["+", "%C2"]], "name": "object with +" },
{ "input": {c: "x", a: "?"}, "output": [["c", "x"], ["a", "?"]], "name": "object with two keys" },
{ "input": [["c", "x"], ["a", "?"]], "output": [["c", "x"], ["a", "?"]], "name": "array with two keys" }
].forEach((val) => {
Expand Down

0 comments on commit e94c604

Please sign in to comment.