summaryrefslogtreecommitdiff
path: root/dev-python/bleach/files/bleach-4.1.0-py39.patch
blob: 8460be601a2306975042aee9dd8a108c18f6a979 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
diff --git a/tests/test_clean.py b/tests/test_clean.py
index 8f816f9..2be6f7b 100644
--- a/tests/test_clean.py
+++ b/tests/test_clean.py
@@ -525,31 +525,16 @@ def test_attributes_list():
             {"protocols": ["http"]},
             '<a href="example.com">valid</a>',
         ),
-        (
-            '<a href="example.com:8000">valid</a>',
-            {"protocols": ["http"]},
-            '<a href="example.com:8000">valid</a>',
-        ),
         (
             '<a href="localhost">valid</a>',
             {"protocols": ["http"]},
             '<a href="localhost">valid</a>',
         ),
-        (
-            '<a href="localhost:8000">valid</a>',
-            {"protocols": ["http"]},
-            '<a href="localhost:8000">valid</a>',
-        ),
         (
             '<a href="192.168.100.100">valid</a>',
             {"protocols": ["http"]},
             '<a href="192.168.100.100">valid</a>',
         ),
-        (
-            '<a href="192.168.100.100:8000">valid</a>',
-            {"protocols": ["http"]},
-            '<a href="192.168.100.100:8000">valid</a>',
-        ),
         pytest.param(
             *(
                 '<a href="192.168.100.100:8000/foo#bar">valid</a>',