diff --git a/tests/test_utils.py b/tests/test_utils.py index c8c330e5..5a50e366 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -14,7 +14,6 @@ from requests.utils import ( from .compat import StringIO, cStringIO - class TestSuperLen: @pytest.mark.parametrize( @@ -152,6 +151,7 @@ class TestContentEncodingDetection: '''.strip() assert get_encodings_from_content(content) == ['HTML5', 'HTML4', 'XML'] + USER = PASSWORD = "%!*'();:@&=+$,/?#[] " ENCODED_USER = compat.quote(USER, '') ENCODED_PASSWORD = compat.quote(PASSWORD, '') @@ -229,4 +229,3 @@ def test_select_proxies(url, expected): proxies = {'http': 'http://http.proxy', 'http://some.host': 'http://some.host.proxy'} assert select_proxy(url, proxies) == expected -