We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf050d2 commit d33ba88Copy full SHA for d33ba88
tests/test.py
@@ -746,14 +746,14 @@ def test_url_compatibility_http_unix_triple_slash(self):
746
assert c.base_url == "http+unix://socket"
747
748
def test_url_compatibility_http(self):
749
- c = docker.Client(base_url="http://hostname")
+ c = docker.Client(base_url="http://hostname:1234")
750
751
- assert c.base_url == "http://hostname"
+ assert c.base_url == "http://hostname:1234"
752
753
def test_url_compatibility_tcp(self):
754
- c = docker.Client(base_url="tcp://hostname")
+ c = docker.Client(base_url="tcp://hostname:1234")
755
756
757
758
def test_logs(self):
759
try:
0 commit comments