diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-29 07:53:33 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-29 07:53:33 (GMT) |
| commit | fc8a0a584ef466329a4b532918d171f92e9c47ce (patch) | |
| tree | fbd031c130671d82239823af771c4d7817cbcb72 | |
| parent | c257007c0e71fa085b614fd62e48fa506c57e5ca (diff) | |
| parent | 265cee04806c55756e5480bd3405ec4d1d8129f0 (diff) | |
| download | cpython-fc8a0a584ef466329a4b532918d171f92e9c47ce.zip cpython-fc8a0a584ef466329a4b532918d171f92e9c47ce.tar.gz cpython-fc8a0a584ef466329a4b532918d171f92e9c47ce.tar.bz2 | |
Issue25506: Fixed a copy-pasting error in test_pprint.
Patch by John Mark Vandenberg.
| -rw-r--r-- | 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 index 357c5cf..7ebc298 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() |
