summaryrefslogtreecommitdiff
path: root/tempest/api/identity/admin/v3/test_credentials.py
diff options
context:
space:
mode:
Diffstat (limited to 'tempest/api/identity/admin/v3/test_credentials.py')
-rw-r--r--tempest/api/identity/admin/v3/test_credentials.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tempest/api/identity/admin/v3/test_credentials.py b/tempest/api/identity/admin/v3/test_credentials.py
index 75e877a4d..15b20081e 100644
--- a/tempest/api/identity/admin/v3/test_credentials.py
+++ b/tempest/api/identity/admin/v3/test_credentials.py
@@ -107,6 +107,6 @@ class CredentialsTestJSON(base.BaseIdentityV3AdminTest):
fetched_cred_ids.append(i['id'])
missing_creds = [c for c in created_cred_ids
if c not in fetched_cred_ids]
- self.assertEqual(0, len(missing_creds),
+ self.assertEmpty(missing_creds,
"Failed to find cred %s in fetched list" %
', '.join(m_cred for m_cred in missing_creds))