aboutsummaryrefslogtreecommitdiff
path: root/test/test_http_proxy.py
diff options
context:
space:
mode:
authorSimon Sawicki <contact@grub4k.xyz>2025-03-22 00:41:56 +0100
committerGitHub <noreply@github.com>2025-03-21 23:41:56 +0000
commitf36e4b6e65cb8403791aae2f520697115cb88dec (patch)
treec161d5f0a52648e0abca699a02cb9d6897deff45 /test/test_http_proxy.py
parent983095485c731240aae27c950cb8c24a50827b56 (diff)
[cleanup] Misc (#12526)
Authored by: Grub4K, seproDev, gamer191, dirkf Co-authored-by: sepro <sepro@sepr0.com>
Diffstat (limited to 'test/test_http_proxy.py')
-rw-r--r--test/test_http_proxy.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test_http_proxy.py b/test/test_http_proxy.py
index 2435c878a..e903ff8be 100644
--- a/test/test_http_proxy.py
+++ b/test/test_http_proxy.py
@@ -331,10 +331,6 @@ class TestHTTPConnectProxy:
assert proxy_info['proxy'] == server_address
assert 'Proxy-Authorization' in proxy_info['headers']
- @pytest.mark.skip_handler(
- 'Requests',
- 'bug in urllib3 causes unclosed socket: https://github.com/urllib3/urllib3/issues/3374',
- )
def test_http_connect_bad_auth(self, handler, ctx):
with ctx.http_server(HTTPConnectProxyHandler, username='test', password='test') as server_address:
with handler(verify=False, proxies={ctx.REQUEST_PROTO: f'http://test:bad@{server_address}'}) as rh: