summaryrefslogtreecommitdiff
path: root/taskflow/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskflow/test.py')
-rw-r--r--taskflow/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/test.py b/taskflow/test.py
index 2b1678d..a9cce35 100644
--- a/taskflow/test.py
+++ b/taskflow/test.py
@@ -182,7 +182,7 @@ class TestCase(base.BaseTestCase):
except exceptions.WrappedFailure as e:
self.assertThat(e, FailureRegexpMatcher(exc_class, pattern))
- def assertItemsEqual(self, seq1, seq2, msg=None):
+ def assertCountEqual(self, seq1, seq2, msg=None):
matcher = ItemsEqual(seq1)
self.assertThat(seq2, matcher)