summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-08-19 01:50:40 +0000
committerGerrit Code Review <review@openstack.org>2022-08-19 01:50:40 +0000
commit249201f7eab8ed07a89f7e8f6831e7b358e1f4f7 (patch)
tree3feaec4fe273efb52e91e3103fdba5dd6da29c0d
parentc1f5e8b7c19b90097aecaa89c028f698cf4d804e (diff)
parent0bd2ab5cb0020bc15f36a2614aecdc28feecbea0 (diff)
downloadpython-swiftclient-249201f7eab8ed07a89f7e8f6831e7b358e1f4f7.tar.gz
Merge "Fix misuse of assertTrue"
-rw-r--r--test/functional/test_swiftclient.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/test_swiftclient.py b/test/functional/test_swiftclient.py
index 91e31af..a5c1211 100644
--- a/test/functional/test_swiftclient.py
+++ b/test/functional/test_swiftclient.py
@@ -332,7 +332,7 @@ class TestFunctional(unittest.TestCase):
resp_chunk_size=resp_chunk_size)
data = next(body)
self.assertEqual(self.test_data[:resp_chunk_size], data)
- self.assertTrue(1, self.conn.attempts)
+ self.assertEqual(1, self.conn.attempts)
for chunk in body.resp:
# Flush remaining data from underlying response
# (simulate a dropped connection)
@@ -369,13 +369,13 @@ class TestFunctional(unittest.TestCase):
hdrs, body = self.conn.get_object(self.containername, self.objectname)
data = body
self.assertEqual(self.test_data, data)
- self.assertTrue(1, self.conn.attempts)
+ self.assertEqual(1, self.conn.attempts)
hdrs, body = self.conn.get_object(self.containername, self.objectname,
resp_chunk_size=0)
data = body
self.assertEqual(self.test_data, data)
- self.assertTrue(1, self.conn.attempts)
+ self.assertEqual(1, self.conn.attempts)
def test_post_account(self):
self.conn.post_account({'x-account-meta-data': 'Something'})