mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix typo.
This commit is contained in:
parent
abc1566eab
commit
c448a91ee8
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class TestBasic(unittest.TestCase):
|
|||
self.assertRaises(ValueError, d.remove, 'c')
|
||||
self.assertEqual(d, deque('abdefghij'))
|
||||
|
||||
# Handle comparision errors
|
||||
# Handle comparison errors
|
||||
d = deque(['a', 'b', BadCmp(), 'c'])
|
||||
e = deque(d)
|
||||
self.assertRaises(RuntimeError, d.remove, 'c')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue