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:52:20 +02:00
parent 15f74f44d8
commit 265cee0480
1 changed files with 1 additions and 1 deletions

View File

@ -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()