summaryrefslogtreecommitdiff
path: root/test/unit/test_service.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/test_service.py')
-rw-r--r--test/unit/test_service.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/test_service.py b/test/unit/test_service.py
index 9f3a2a2..0ad5378 100644
--- a/test/unit/test_service.py
+++ b/test/unit/test_service.py
@@ -564,7 +564,7 @@ class TestServiceDelete(_TestServiceBase):
stub_headers, json.dumps(stub_resp).encode('utf8'))
obj_list = ['x%02d' % i for i in range(100)]
expected = [{
- 'action': u'bulk_delete',
+ 'action': 'bulk_delete',
'attempts': 0,
'container': 'c',
'objects': list(objs),
@@ -594,7 +594,7 @@ class TestServiceDelete(_TestServiceBase):
obj_list = [SwiftDeleteObject('x%02d' % i, options={'version_id': i})
for i in range(100)]
expected = [{
- 'action': u'delete_object',
+ 'action': 'delete_object',
'attempts': 0,
'container': 'c',
'object': obj.object_name,