cpython (merge 3.5 -> default): Issue25506: Fixed a copy-pasting error in test_pprint.
https://hg.python.org/cpython/rev/30b6c3bbefc7 changeset: 98888:30b6c3bbefc7 parent: 98886:8d2889a935b2 parent: 98887:0e0f3f5195f8 user: Serhiy Storchaka <storchaka@gmail.com> date: Thu Oct 29 09:53:33 2015 +0200 summary: Issue25506: Fixed a copy-pasting error in test_pprint. Patch by John Mark Vandenberg. files: Lib/test/test_pprint.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -961,7 +961,7 @@ '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() -- Repository URL: https://hg.python.org/cpython
participants (1)
-
serhiy.storchaka