diff options
author | Raymond Hettinger <python@rcn.com> | 2016-01-26 07:00:21 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-01-26 07:00:21 (GMT) |
commit | 906d82db6d63c81b9d63a0c99039358bce2da6cb (patch) | |
tree | 376c8d3f77f6a63f0c80cf326df8b7758f6bd8ef /Lib | |
parent | 0b57f0adde159331b545a359c9fa47b2d7ea2f94 (diff) | |
download | cpython-906d82db6d63c81b9d63a0c99039358bce2da6cb.zip cpython-906d82db6d63c81b9d63a0c99039358bce2da6cb.tar.gz cpython-906d82db6d63c81b9d63a0c99039358bce2da6cb.tar.bz2 |
Fix typo
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_deque.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_deque.py b/Lib/test/test_deque.py index c61e80b..f75b3ff 100644 --- a/Lib/test/test_deque.py +++ b/Lib/test/test_deque.py @@ -289,7 +289,7 @@ class TestBasic(unittest.TestCase): else: self.assertEqual(d.index(element, start, stop), target) - def test_insert_bug_24913(self): + def test_index_bug_24913(self): d = deque('A' * 3) with self.assertRaises(ValueError): i = d.index("Hello world", 0, 4) |