Merge "Replace assertItemsEqual with assertCountEqual"
This commit is contained in:
commit
94314329e9
@ -35,7 +35,7 @@ class FedKerbLoadingTests(test_utils.TestCase):
|
|||||||
'mutual-auth',
|
'mutual-auth',
|
||||||
]
|
]
|
||||||
|
|
||||||
self.assertItemsEqual(allowed_opts, opts)
|
self.assertCountEqual(allowed_opts, opts)
|
||||||
|
|
||||||
def create(self, **kwargs):
|
def create(self, **kwargs):
|
||||||
loader = loading.get_plugin_loader('v3fedkerb')
|
loader = loading.get_plugin_loader('v3fedkerb')
|
||||||
|
@ -32,4 +32,4 @@ class KerberosLoadingTests(test_utils.TestCase):
|
|||||||
'mutual-auth',
|
'mutual-auth',
|
||||||
]
|
]
|
||||||
|
|
||||||
self.assertItemsEqual(allowed_opts, opts)
|
self.assertCountEqual(allowed_opts, opts)
|
||||||
|
Loading…
Reference in New Issue
Block a user