diff options
-rw-r--r-- | BROKEN | 1 | ||||
-rw-r--r-- | Lib/test/mapping_tests.py | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -1,3 +1,2 @@ test_bsddb test_bsddb3 test_compile test_dumbdbm test_importhooks test_iter test_iterlen test_minidom test_mutants - test_os diff --git a/Lib/test/mapping_tests.py b/Lib/test/mapping_tests.py index 09e9dcb..77d66b2 100644 --- a/Lib/test/mapping_tests.py +++ b/Lib/test/mapping_tests.py @@ -101,7 +101,7 @@ class BasicTestMappingProtocol(unittest.TestCase): #update p.update(self.reference) self.assertEqual(dict(p), self.reference) - items = p.items() + items = list(p.items()) p = self._empty_mapping() p.update(items) self.assertEqual(dict(p), self.reference) |