This repository was archived by the owner on Jan 13, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class HTTP20Connection(object):
37
37
38
38
:param host: The host to connect to. This may be an IP address or a
39
39
hostname, and optionally may include a port: for example,
40
- ``'twitter.com '``, ``'twitter.com :443'`` or ``'127.0.0.1'``.
40
+ ``'http2bin.org '``, ``'http2bin.org :443'`` or ``'127.0.0.1'``.
41
41
:param port: (optional) The port to connect to. If not provided and one also
42
42
isn't provided in the ``host`` parameter, defaults to 443.
43
43
:param window_manager: (optional) The class to use to manage flow control
Original file line number Diff line number Diff line change @@ -1984,8 +1984,8 @@ def test_gettrailer_defaults_correctly(self):
1984
1984
class TestHTTP20Adapter (object ):
1985
1985
def test_adapter_reuses_connections (self ):
1986
1986
a = HTTP20Adapter ()
1987
- conn1 = a .get_connection ('twitter.com ' )
1988
- conn2 = a .get_connection ('twitter.com ' )
1987
+ conn1 = a .get_connection ('http2bin.org ' )
1988
+ conn2 = a .get_connection ('http2bin.org ' )
1989
1989
1990
1990
assert conn1 is conn2
1991
1991
You can’t perform that action at this time.
0 commit comments