Issue25506: Fixed a copy-pasting error in test_pprint.

Patch by John Mark Vandenberg.
This commit is contained in:
Serhiy Storchaka 2015-10-29 09:53:33 +02:00
commit fc8a0a584e

View file

@ -961,7 +961,7 @@ deque([('brown', 2),
'quick': 1, 'quick': 1,
'the': 0}""") 'the': 0}""")
def test_user_dict(self): def test_user_list(self):
d = collections.UserList() d = collections.UserList()
self.assertEqual(pprint.pformat(d, width=1), "[]") self.assertEqual(pprint.pformat(d, width=1), "[]")
words = 'the quick brown fox jumped over a lazy dog'.split() words = 'the quick brown fox jumped over a lazy dog'.split()