summaryrefslogtreecommitdiff
path: root/tests/test_swiftclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_swiftclient.py')
-rw-r--r--tests/test_swiftclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_swiftclient.py b/tests/test_swiftclient.py
index b57bf9f..8f70947 100644
--- a/tests/test_swiftclient.py
+++ b/tests/test_swiftclient.py
@@ -168,7 +168,7 @@ class MockHttpResponse():
self.status = 200
# This simulate previous httplib implementation that would do a
# putrequest() and then use putheader() to send header.
- for k, v in kwarg['headers'].iteritems():
+ for k, v in kwarg['headers'].items():
self.buffer.append('%s: %s' % (k, v))
return self.fake_response()