summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/utils_test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/utils_test.py b/tests/utils_test.py
index 8acd47d..5327e13 100644
--- a/tests/utils_test.py
+++ b/tests/utils_test.py
@@ -72,7 +72,10 @@ class UtilsTest(base.BaseTestCase):
'': 'http+unix://var/run/docker.sock',
None: 'http+unix://var/run/docker.sock',
'unix:///var/run/docker.sock': 'http+unix:///var/run/docker.sock',
- 'unix://': 'http+unix://var/run/docker.sock'
+ 'unix://': 'http+unix://var/run/docker.sock',
+ 'somehost.net:80/service/swarm': (
+ 'http://somehost.net:80/service/swarm'
+ ),
}
for host in invalid_hosts: