Merge "Replace assertItemsEqual with assertCountEqual"

This commit is contained in:
Zuul 2024-01-09 08:38:44 +00:00 committed by Gerrit Code Review
commit 027f18133c
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class TestStrings(yaql.tests.TestCase):
self.assertEqual(['a', 'b', 'c'], self.eval('abc.toCharArray()'))
def test_characters(self):
self.assertItemsEqual(
self.assertCountEqual(
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
self.eval('characters(octdigits => true, digits => true)'))