[Python-checkins] cpython: Fix typo

raymond.hettinger python-checkins at python.org
Tue Jan 26 02:00:27 EST 2016


https://hg.python.org/cpython/rev/fadc4b53b840
changeset:   100068:fadc4b53b840
user:        Raymond Hettinger <python at rcn.com>
date:        Mon Jan 25 23:00:21 2016 -0800
summary:
  Fix typo

files:
  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
--- a/Lib/test/test_deque.py
+++ b/Lib/test/test_deque.py
@@ -289,7 +289,7 @@
                     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)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list