Skip to content

Commit 991c070

Browse files
committed
removed comment
1 parent 422fa12 commit 991c070

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

tests/unit/common/test_http_transport.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,6 @@
2828

2929
@pytest.mark.describe("HTTPTransport - Instantiation")
3030
class TestInstantiation(object):
31-
# @pytest.fixture(
32-
# params=["HTTP", "SOCKS4", "SOCKS5"]
33-
# )
34-
# def proxy_type(self, request):
35-
# return request.param
36-
37-
# @pytest.fixture(params=[
38-
# pytest.param((None, None), id="No Auth"),
39-
# pytest.param(("fake_username", "fake_password"), id="Auth (standard chars)"),
40-
# pytest.param(("malicious-user\\r\\nX-Evil-Header: injected-value", "fake_password"), id="Auth (malicious chars)")
41-
# ])
42-
# def proxy_auth(self, request):
43-
# return request.param
44-
45-
# @pytest.fixture
46-
# def proxy_options(self, proxy_type, proxy_auth):
47-
# return ProxyOptions(
48-
# proxy_type=proxy_type,
49-
# proxy_addr="127.0.0.1",
50-
# proxy_port=1080,
51-
# proxy_username=proxy_auth[0],
52-
# proxy_password=proxy_auth[1],
53-
# )
54-
5531
@pytest.fixture(params=["HTTP", "SOCKS4", "SOCKS5"])
5632
def proxy_type(self, request):
5733
return request.param

0 commit comments

Comments
 (0)