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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/test_shell.py b/tests/unit/test_shell.py
index 61d970d..0c28297 100644
--- a/tests/unit/test_shell.py
+++ b/tests/unit/test_shell.py
@@ -217,7 +217,7 @@ class TestShell(unittest.TestCase):
content_length=0,
headers={'x-object-meta-mtime': mock.ANY})
- # Upload whole directory
+ # Upload whole directory
argv = ["", "upload", "container", "/tmp"]
listdir.return_value = [self.tmpfile]
swiftclient.shell.main(argv)
@@ -239,7 +239,7 @@ class TestShell(unittest.TestCase):
'',
content_length=0,
headers={'x-object-manifest': mock.ANY,
- 'x-object-meta-mtime': mock.ANY})
+ 'x-object-meta-mtime': mock.ANY})
@mock.patch('swiftclient.shell.Connection')
def test_delete_account(self, connection):