From d81206d1526f869645bca83193da5ddfefaf4936 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 15 Feb 2007 03:49:08 +0000 Subject: Fix the damage to UserDict and its tests. Clearly this is not the right way to fix this; UserDict and MixinDict ought to be redesigned with the new dict API in mind. But I'm not claiming to be in charge of library redesign, I only want zero failing tests. --- Lib/test/mapping_tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Lib/test/mapping_tests.py') diff --git a/Lib/test/mapping_tests.py b/Lib/test/mapping_tests.py index a260d4f5f7..09e9dcbe42 100644 --- a/Lib/test/mapping_tests.py +++ b/Lib/test/mapping_tests.py @@ -317,7 +317,7 @@ class TestMappingProtocol(BasicTestMappingProtocol): def test_keys(self): BasicTestMappingProtocol.test_keys(self) d = self._empty_mapping() - self.assertEqual(d.keys(), []) + self.assertEqual(list(d.keys()), []) d = self._full_mapping({'a': 1, 'b': 2}) k = d.keys() self.assert_('a' in k) @@ -327,13 +327,13 @@ class TestMappingProtocol(BasicTestMappingProtocol): def test_values(self): BasicTestMappingProtocol.test_values(self) d = self._full_mapping({1:2}) - self.assertEqual(d.values(), [2]) + self.assertEqual(list(d.values()), [2]) def test_items(self): BasicTestMappingProtocol.test_items(self) d = self._full_mapping({1:2}) - self.assertEqual(d.items(), [(1, 2)]) + self.assertEqual(list(d.items()), [(1, 2)]) def test_contains(self): d = self._empty_mapping() -- cgit v1.2.1