mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
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
1 changed files with 1 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue