From 6e571d699f681127fd789cf0db3d521565073682 Mon Sep 17 00:00:00 2001 From: Florent Xicluna Date: Sat, 21 Jul 2012 12:44:20 +0200 Subject: Fix test_pprint random dict ordering. --- Lib/test/test_pprint.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py index 7daf4a7..0c93d0e 100644 --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -467,8 +467,9 @@ class QueryTestCase(unittest.TestCase): '{1: 0, ' + repr(Unorderable) +': 0}') # Issue 14998: TypeError on tuples with NoneTypes as dict keys. - self.assertEqual(pprint.pformat({(1,): 0, (None,): 0}), - '{(1,): 0, (None,): 0}') + keys = [(1,), (None,)] + self.assertEqual(pprint.pformat(dict.fromkeys(keys, 0)), + '{%r: 0, %r: 0}' % tuple(sorted(keys, key=id))) class DottedPrettyPrinter(pprint.PrettyPrinter): -- cgit v0.12