diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-11-08 19:30:40 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-11-08 19:30:40 +0000 |
commit | 70c90b2243c2df9857a188cbd61d340b7e191d0d (patch) | |
tree | e18844bd7c4d2d571916dc9ca6e55f4f48056b11 /tests/unit/test_swiftclient.py | |
parent | cb922f4dc6c9d1f49069b555d8fbfc3628e78190 (diff) | |
parent | 6cf2bd6626df8e4c68bd5463d9b030e315f76b42 (diff) | |
download | python-swiftclient-70c90b2243c2df9857a188cbd61d340b7e191d0d.tar.gz |
Merge "Add additional headers for HEAD/GET/DELETE requests."
Diffstat (limited to 'tests/unit/test_swiftclient.py')
-rw-r--r-- | tests/unit/test_swiftclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_swiftclient.py b/tests/unit/test_swiftclient.py index 3534e14..3a24b00 100644 --- a/tests/unit/test_swiftclient.py +++ b/tests/unit/test_swiftclient.py @@ -3045,7 +3045,7 @@ class TestServiceToken(MockHttpTest): with mock.patch('swiftclient.client.http_connection', self.fake_http_connection(202)): conn = self.get_connection() - conn.delete_object('container1', 'obj1', 'a_string') + conn.delete_object('container1', 'obj1', query_string='a_string') self.assertEqual(1, len(self.request_log), self.request_log) for actual in self.iter_request_log(): self.assertEqual('DELETE', actual['method']) |