diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-10-31 20:38:52 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-10-31 20:38:52 (GMT) |
commit | 4ca83ec72dc05eea4e1f2818c6d47a0fd8b5bd68 (patch) | |
tree | af004809c108587d3ce26522587b44eee2fe76d9 /Lib/test | |
parent | 8a9b401a7d0e3dbe3ba02da9a2cfba50d6558ab9 (diff) | |
download | cpython-4ca83ec72dc05eea4e1f2818c6d47a0fd8b5bd68.zip cpython-4ca83ec72dc05eea4e1f2818c6d47a0fd8b5bd68.tar.gz cpython-4ca83ec72dc05eea4e1f2818c6d47a0fd8b5bd68.tar.bz2 |
Issue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks Yury Selivanov.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_bisect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bisect.py b/Lib/test/test_bisect.py index 60777ef..5c3330b 100644 --- a/Lib/test/test_bisect.py +++ b/Lib/test/test_bisect.py @@ -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) |