summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gdb.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-11-20 11:00:35 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-11-20 11:00:35 (GMT)
commit156983ae3b0f951a0cfa0457c9f969e5b52acd8e (patch)
treee01fbf0faf43eb05a872000e80ab49f892792518 /Lib/test/test_gdb.py
parent985ecdcfc29adfc36ce2339acf03f819ad414869 (diff)
downloadcpython-156983ae3b0f951a0cfa0457c9f969e5b52acd8e.zip
cpython-156983ae3b0f951a0cfa0457c9f969e5b52acd8e.tar.gz
cpython-156983ae3b0f951a0cfa0457c9f969e5b52acd8e.tar.bz2
Issue #19183: test_gdb's test_dict was failing on some machines as the order or dict keys has changed again.
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r--Lib/test/test_gdb.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 624e3d3..d1a078d 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -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'