Skip to content

Commit

Permalink
Remove stray comma
Browse files Browse the repository at this point in the history
  • Loading branch information
BramBonne committed May 3, 2021
1 parent 5793b7e commit 744b763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion url/tests/unit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ fn test_syntax_violation_callback_types() {
("http:///mozilla.org", ExpectedDoubleSlash, "expected //"),
("file:/foo.txt", ExpectedFileDoubleSlash, "expected // after file:"),
("file://mozilla.org/c:/file.txt", FileWithHostAndWindowsDrive, "file: with host and Windows drive letter"),
("http://mozilla.org/^", NonUrlCodePoint, "non-URL code point",),
("http://mozilla.org/^", NonUrlCodePoint, "non-URL code point"),
("http://mozilla.org/#\00", NullInFragment, "NULL characters are ignored in URL fragment identifiers"),
("http://mozilla.org/%1", PercentDecode, "expected 2 hex digits after %"),
("http://mozilla.org\t/foo", TabOrNewlineIgnored, "tabs or newlines are ignored in URLs"),
Expand Down

0 comments on commit 744b763

Please sign in to comment.