Commit 4ca83ec7 authored by Mark Dickinson's avatar Mark Dickinson

Issue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks Yury Selivanov.

parent 8a9b401a
......@@ -242,7 +242,7 @@ class TestInsort(unittest.TestCase):
else:
f = self.module.insort_right
f(insorted, digit)
self.assertEqual(sorted(insorted), insorted)
self.assertEqual(sorted(insorted), insorted)
def test_backcompatibility(self):
self.assertEqual(self.module.insort, self.module.insort_right)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment