Commit 7da027f2 authored by Christian Heimes's avatar Christian Heimes

Issue #19183: test_gdb's test_dict was failing on some machines as the order...

Issue #19183: test_gdb's test_dict was failing on some machines as the order or dict keys has changed again.
parent ac5e6c9e
......@@ -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'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment