From c56fbae99862763b4d834ca749ea2d1c6b8bb9ce Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 11 Jun 2024 08:53:31 -0400 Subject: [PATCH] tests: remove a proxy parse error check --- src/proxy.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/proxy.rs b/src/proxy.rs index 17670cf4a..f5e8f66ac 100644 --- a/src/proxy.rs +++ b/src/proxy.rs @@ -1984,11 +1984,6 @@ mod test { url::ParseError::InvalidIpv6Address, ); } - - #[test] - fn invalid_domain_character() { - check_parse_error("http://abc 123/", url::ParseError::InvalidDomainCharacter); - } } } }