Merge pull request #3619 from jgiannuzzi/fix_tests

Fix assertion that was always true
This commit is contained in:
Aanand Prasad 2016-06-27 14:16:00 -07:00 committed by GitHub
commit fe0654603c

View File

@ -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