summaryrefslogtreecommitdiff
path: root/tests/unit/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/test_shell.py')
-rw-r--r--tests/unit/test_shell.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/unit/test_shell.py b/tests/unit/test_shell.py
index 7dce03b..12ceadb 100644
--- a/tests/unit/test_shell.py
+++ b/tests/unit/test_shell.py
@@ -410,18 +410,12 @@ class TestShell(unittest.TestCase):
# Test that the container and object lists are not shuffled
mock_shuffle.reset_mock()
- connection.return_value.get_object.return_value = [
- {'content-type': 'text/plain',
- 'etag': 'd41d8cd98f00b204e9800998ecf8427e'},
- '']
connection.return_value.get_container.side_effect = [
(None, [{'name': 'object'}]),
(None, [{'name': 'pseudo/'}]),
(None, []),
]
- connection.return_value.auth_end_time = 0
- connection.return_value.attempts = 0
connection.return_value.get_account.side_effect = [
(None, [{'name': 'container'}]),
(None, [])