Browse Source

Fix assertion that was always true

Signed-off-by: Jonathan Giannuzzi <[email protected]>
Jonathan Giannuzzi 9 years ago
parent
commit
3c77db709f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/integration/service_test.py

+ 1 - 1
tests/integration/service_test.py

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