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:
parent
985ecdcfc2
commit
156983ae3b
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue