diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 624e3d3db05..d1a078dbd7a 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'