From: Christian Heimes Date: Wed, 20 Nov 2013 11:00:35 +0000 (+0100) Subject: Issue #19183: test_gdb's test_dict was failing on some machines as the order or dict... X-Git-Tag: v3.4.0b1~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=156983ae3b0f951a0cfa0457c9f969e5b52acd8e;p=thirdparty%2FPython%2Fcpython.git Issue #19183: test_gdb's test_dict was failing on some machines as the order or dict keys has changed again. --- diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 624e3d3db05e..d1a078dbd7ad 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'