mirror of
https://github.com/docker/compose.git
synced 2025-07-13 16:54:25 +02:00
Merge pull request #3691 from aanand/fix-alias-tests-on-1.11
Fix alias tests on 1.11
This commit is contained in:
commit
dcc09b677b
@ -1164,7 +1164,7 @@ class CLITestCase(DockerClientTestCase):
|
||||
for _, config in networks.items():
|
||||
# TODO: once we drop support for API <1.24, this can be changed to:
|
||||
# assert config['Aliases'] == [container.short_id]
|
||||
aliases = set(config['Aliases']) - set([container.short_id])
|
||||
aliases = set(config['Aliases'] or []) - set([container.short_id])
|
||||
assert not aliases
|
||||
|
||||
@v2_only()
|
||||
@ -1184,7 +1184,7 @@ class CLITestCase(DockerClientTestCase):
|
||||
for _, config in networks.items():
|
||||
# TODO: once we drop support for API <1.24, this can be changed to:
|
||||
# assert config['Aliases'] == [container.short_id]
|
||||
aliases = set(config['Aliases']) - set([container.short_id])
|
||||
aliases = set(config['Aliases'] or []) - set([container.short_id])
|
||||
assert not aliases
|
||||
|
||||
assert self.lookup(container, 'app')
|
||||
|
Loading…
x
Reference in New Issue
Block a user