Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 6ed0da8

Browse files
committed
Fix TestHTTPConnection
1 parent a34e413 commit 6ed0da8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_abstraction.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ class TestHTTPConnection(object):
88
def test_h1_kwargs(self):
99
c = HTTPConnection(
1010
'test', 443, secure=False, window_manager=True, enable_push=True,
11-
ssl_context=False, proxy_host=False, proxy_port=False, other_kwarg=True
11+
ssl_context=False, force_proto=False, proxy_host=False, proxy_port=False, other_kwarg=True
1212
)
1313

1414
assert c._h1_kwargs == {
1515
'secure': False,
1616
'ssl_context': False,
17+
'force_proto': False,
1718
'proxy_host': False,
1819
'proxy_port': False,
1920
'other_kwarg': True,

0 commit comments

Comments
 (0)