Skip to content

Commit

Permalink
Fix assertion that was always true
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Giannuzzi <jonathan@giannuzzi.be>
  • Loading branch information
jgiannuzzi authored and aanand committed Jul 6, 2016
1 parent 6021237 commit dbf40d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/service_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def test_execute_convergence_plan_when_host_volume_is_removed(self):

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
Expand Down

0 comments on commit dbf40d8

Please sign in to comment.