diff options
author | Raymond Hettinger <python@rcn.com> | 2016-01-25 23:00:21 -0800 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-01-25 23:00:21 -0800 |
commit | 906d82db6d63c81b9d63a0c99039358bce2da6cb (patch) | |
tree | 376c8d3f77f6a63f0c80cf326df8b7758f6bd8ef | |
parent | 0b57f0adde159331b545a359c9fa47b2d7ea2f94 (diff) | |
download | cpython-git-906d82db6d63c81b9d63a0c99039358bce2da6cb.tar.gz |
Fix typo
-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 c61e80bc2e..f75b3ffc5c 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) |