Issue #19183: test_gdb's test_dict was failing on some machines as the order or dict keys has changed again.

This commit is contained in:
Christian Heimes 2013-11-20 12:00:35 +01:00
parent 985ecdcfc2
commit 156983ae3b
1 changed files with 1 additions and 2 deletions

View File

@ -248,8 +248,7 @@ class PrettyPrintTests(DebuggerTests):
'Verify the pretty-printing of dictionaries'
self.assertGdbRepr({})
self.assertGdbRepr({'foo': 'bar'})
self.assertGdbRepr({'foo': 'bar', 'douglas': 42},
"{'foo': 'bar', 'douglas': 42}")
self.assertGdbRepr({'foo': 'bar', 'douglas': 42}),
def test_lists(self):
'Verify the pretty-printing of lists'