From: Mark Dickinson Date: Wed, 31 Oct 2012 20:38:52 +0000 (+0000) Subject: Issue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks... X-Git-Tag: v2.7.4rc1~423 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ca83ec72dc05eea4e1f2818c6d47a0fd8b5bd68;p=thirdparty%2FPython%2Fcpython.git Issue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks Yury Selivanov. --- diff --git a/Lib/test/test_bisect.py b/Lib/test/test_bisect.py index 60777efb66dc..5c3330b4e410 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)