diff options
author | Danny Allen <me@dannya.com> | 2014-08-11 16:13:06 +0100 |
---|---|---|
committer | Danny Allen <me@dannya.com> | 2014-08-11 16:13:06 +0100 |
commit | e38016c499921dd7bf5919a699a76305a1936129 (patch) | |
tree | 07a4125732561f2489dfb6b75a339cfef46d80d4 /tests/test_backward.py | |
parent | c81183f614ca982cd2ed93ac8e6e76610d162202 (diff) | |
parent | ee5ea987f8978d91c1ef189fe4f334511ddf6215 (diff) | |
download | python-coveragepy-git-e38016c499921dd7bf5919a699a76305a1936129.tar.gz |
Merged ned/coveragepy into default
Diffstat (limited to 'tests/test_backward.py')
-rw-r--r-- | tests/test_backward.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_backward.py b/tests/test_backward.py index e98017ae..2c688edd 100644 --- a/tests/test_backward.py +++ b/tests/test_backward.py @@ -12,7 +12,7 @@ class BackwardTest(TestCase): def test_iitems(self): d = {'a': 1, 'b': 2, 'c': 3} items = [('a', 1), ('b', 2), ('c', 3)] - self.assertSameElements(list(iitems(d)), items) + self.assertCountEqual(list(iitems(d)), items) def test_binary_bytes(self): byte_values = [0, 255, 17, 23, 42, 57] |