From: Serhiy Storchaka Date: Thu, 29 Oct 2015 07:52:20 +0000 (+0200) Subject: Issue25506: Fixed a copy-pasting error in test_pprint. X-Git-Tag: v3.5.1rc1~118 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=265cee04806c55756e5480bd3405ec4d1d8129f0;p=python Issue25506: Fixed a copy-pasting error in test_pprint. Patch by John Mark Vandenberg. --- diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py index 357c5cf0a9..7ebc298337 100644 --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -961,7 +961,7 @@ deque([('brown', 2), 'quick': 1, 'the': 0}""") - def test_user_dict(self): + def test_user_list(self): d = collections.UserList() self.assertEqual(pprint.pformat(d, width=1), "[]") words = 'the quick brown fox jumped over a lazy dog'.split()