summaryrefslogtreecommitdiff
path: root/test/unit/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/test_shell.py')
-rw-r--r--test/unit/test_shell.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/unit/test_shell.py b/test/unit/test_shell.py
index 46ba52c..8c525d9 100644
--- a/test/unit/test_shell.py
+++ b/test/unit/test_shell.py
@@ -1260,8 +1260,7 @@ class TestShell(unittest.TestCase):
[None, [{'name': 'empty_container'}]],
[None, []],
]
- # N.B: missing --versions flag, version-id gets ignored
- # only latest object is deleted
+ # N.B: --all implies --versions, clear it all out
connection.return_value.get_container.side_effect = [
[None, [{'name': 'object'}, {'name': 'obj\xe9ct2'}]],
[None, []],
@@ -1279,7 +1278,7 @@ class TestShell(unittest.TestCase):
response_dict={}, headers={}),
mock.call('container', 'obj\xe9ct2', query_string='',
response_dict={}, headers={}),
- mock.call('container2', 'object', query_string='',
+ mock.call('container2', 'object', query_string='version-id=1',
response_dict={}, headers={})], any_order=True)
self.assertEqual(3, connection.return_value.delete_object.call_count,
'Expected 3 calls but found\n%r'