From 1479c09e56308fc156c37e340dcc035ea936fa3f Mon Sep 17 00:00:00 2001 From: Quentin Santos Date: Thu, 2 Mar 2023 09:07:25 +0100 Subject: [PATCH] Remove obsolete debug output --- url/tests/unit.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/url/tests/unit.rs b/url/tests/unit.rs index 3700935c9..55f33c0f9 100644 --- a/url/tests/unit.rs +++ b/url/tests/unit.rs @@ -960,7 +960,6 @@ fn test_null_host_with_leading_empty_path_fragment() { // https://url.spec.whatwg.org/#url-serializing let url = Url::parse("m:/.//\\").unwrap(); let encoded = url.as_str(); - println!("{url:?}, {encoded:?}"); let reparsed = Url::parse(encoded).unwrap(); assert_eq!(reparsed, url); }