Merge pull request #3619 from jgiannuzzi/fix_tests
Fix assertion that was always true
This commit is contained in:
commit
fe0654603c
1 changed files with 1 additions and 1 deletions
|
|
@ -397,7 +397,7 @@ class ServiceTest(DockerClientTestCase):
|
|||
|
||||
assert not mock_log.warn.called
|
||||
assert (
|
||||
[mount['Destination'] for mount in new_container.get('Mounts')],
|
||||
[mount['Destination'] for mount in new_container.get('Mounts')] ==
|
||||
['/data']
|
||||
)
|
||||
assert new_container.get_mount('/data')['Source'] != host_path
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue