Skip to content

Commit 744b763

Browse files
committed
Remove stray comma
1 parent 5793b7e commit 744b763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

url/tests/unit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ fn test_syntax_violation_callback_types() {
795795
("http:///mozilla.org", ExpectedDoubleSlash, "expected //"),
796796
("file:/foo.txt", ExpectedFileDoubleSlash, "expected // after file:"),
797797
("file://mozilla.org/c:/file.txt", FileWithHostAndWindowsDrive, "file: with host and Windows drive letter"),
798-
("http://mozilla.org/^", NonUrlCodePoint, "non-URL code point",),
798+
("http://mozilla.org/^", NonUrlCodePoint, "non-URL code point"),
799799
("http://mozilla.org/#\00", NullInFragment, "NULL characters are ignored in URL fragment identifiers"),
800800
("http://mozilla.org/%1", PercentDecode, "expected 2 hex digits after %"),
801801
("http://mozilla.org\t/foo", TabOrNewlineIgnored, "tabs or newlines are ignored in URLs"),

0 commit comments

Comments
 (0)