Przeglądaj źródła

Remove stray comma

Bram Bonné 5 lat temu
rodzic
commit
744b76332c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      url/tests/unit.rs

+ 1 - 1
url/tests/unit.rs

@@ -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"),