Merge "Replace assertItemsEqual with assertCountEqual"

This commit is contained in:
Zuul 2020-09-21 13:51:22 +00:00 committed by Gerrit Code Review
commit dbc5b7c8d4
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class PrometheusFetcherTest(tests.TestCase):
with response:
scopes = self.fetcher.get_tenants()
self.assertItemsEqual(scopes, [
self.assertCountEqual(scopes, [
'scope_id1', 'scope_id2', 'scope_id3',
])