From 744b76332ce7ee66f3bc41689d2b3f42417b34d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bram=20Bonn=C3=A9?= Date: Mon, 3 May 2021 17:23:31 +0200 Subject: [PATCH] Remove stray comma --- url/tests/unit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url/tests/unit.rs b/url/tests/unit.rs index 58d0c1b44..13055a473 100644 --- a/url/tests/unit.rs +++ b/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"),