Merge "Replace assertItemsEqual with assertCountEqual"
diff --git a/keystone_tempest_plugin/tests/api/identity/v3/test_identity_providers.py b/keystone_tempest_plugin/tests/api/identity/v3/test_identity_providers.py
index fef14ea..77060e0 100644
--- a/keystone_tempest_plugin/tests/api/identity/v3/test_identity_providers.py
+++ b/keystone_tempest_plugin/tests/api/identity/v3/test_identity_providers.py
@@ -38,7 +38,7 @@
self.assertEqual(idp_ref['enabled'], idp['enabled'])
if 'remote_ids' in idp_ref:
- self.assertItemsEqual(idp_ref['remote_ids'], idp['remote_ids'])
+ self.assertCountEqual(idp_ref['remote_ids'], idp['remote_ids'])
def _create_idp(self, idp_id, idp_ref):
idp = self.idps_client.create_identity_provider(
diff --git a/keystone_tempest_plugin/tests/api/identity/v3/test_mapping_rules.py b/keystone_tempest_plugin/tests/api/identity/v3/test_mapping_rules.py
index 7fcf376..58790a5 100644
--- a/keystone_tempest_plugin/tests/api/identity/v3/test_mapping_rules.py
+++ b/keystone_tempest_plugin/tests/api/identity/v3/test_mapping_rules.py
@@ -32,7 +32,7 @@
self.assertIn('rules', mapping)
if mapping_ref:
- self.assertItemsEqual(mapping_ref['rules'], mapping['rules'])
+ self.assertCountEqual(mapping_ref['rules'], mapping['rules'])
def _create_mapping_rule(self, mapping_id, mapping_ref):
mapping = self.mappings_client.create_mapping_rule(
diff --git a/keystone_tempest_plugin/tests/api/identity/v3/test_oauth1_tokens.py b/keystone_tempest_plugin/tests/api/identity/v3/test_oauth1_tokens.py
index 849da07..d4f56d8 100644
--- a/keystone_tempest_plugin/tests/api/identity/v3/test_oauth1_tokens.py
+++ b/keystone_tempest_plugin/tests/api/identity/v3/test_oauth1_tokens.py
@@ -219,7 +219,7 @@
role_ids = [role['id'] for role in roles['roles']]
# check that role ids matches
- self.assertItemsEqual(fetched_role_ids, role_ids)
+ self.assertCountEqual(fetched_role_ids, role_ids)
@decorators.idempotent_id('28aee994-86b1-4596-a652-572f558045e7')
def test_show_role_for_access_token(self):