summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-10-29 09:52:20 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-10-29 09:52:20 +0200
commit83d686a434e438a519f8c1762cc3da30f0d43ce0 (patch)
tree71af40c62b9dd79aa5c33d69b68cadf2b1afa76d
parent4a7b2f30b5a63ff2fcd3d427b4ea345efd7dec18 (diff)
downloadcpython-83d686a434e438a519f8c1762cc3da30f0d43ce0.tar.gz
Issue25506: Fixed a copy-pasting error in test_pprint.
Patch by John Mark Vandenberg.
-rw-r--r--Lib/test/test_pprint.py2
1 files changed, 1 insertions, 1 deletions
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()