We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e58fa commit f9cb6faCopy full SHA for f9cb6fa
tests/test_util.py
@@ -17,9 +17,9 @@
17
def test_normalize_url():
18
assert normalize_url("http://1.2.3.4:80") == "http://1.2.3.4:80"
19
assert normalize_url("http://1.2.3.4:80:80") == "http://1.2.3.4:80"
20
- assert normalize_url("http://[:dead:beef::1]:80") == "http://[:dead:beef::1]:80"
+ assert normalize_url("http://[dead:beef::1]:80") == "http://[dead:beef::1]:80"
21
assert normalize_url(None) is None
22
- assert normalize_url(b"http://[:dead:beef::1]:80") is None
+ assert normalize_url(b"http://[dead:beef::1]:80") is None
23
24
25
@pytest.mark.asyncio
0 commit comments