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 570693c commit adb2d01Copy full SHA for adb2d01
tests/utils_test.py
@@ -72,7 +72,10 @@ def test_parse_host(self):
72
'': 'http+unix://var/run/docker.sock',
73
None: 'http+unix://var/run/docker.sock',
74
'unix:///var/run/docker.sock': 'http+unix:///var/run/docker.sock',
75
- 'unix://': 'http+unix://var/run/docker.sock'
+ 'unix://': 'http+unix://var/run/docker.sock',
76
+ 'somehost.net:80/service/swarm': (
77
+ 'http://somehost.net:80/service/swarm'
78
+ ),
79
}
80
81
for host in invalid_hosts:
0 commit comments