diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 20:37:50 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 20:37:50 (GMT) |
commit | eda1f4cf07557f030a33130c5845f3cdca8e2fba (patch) | |
tree | 3fc169e4e1ccd6f693ad092e37e2a1a3aa2f2360 | |
parent | 01e1e35f6a097fae894e5e96528ae22cea997de3 (diff) | |
download | cpython-eda1f4cf07557f030a33130c5845f3cdca8e2fba.zip cpython-eda1f4cf07557f030a33130c5845f3cdca8e2fba.tar.gz cpython-eda1f4cf07557f030a33130c5845f3cdca8e2fba.tar.bz2 |
Issue #16377: Fix bisect unittest.
Patch by Yury Selivanov.
-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 2ac3a68..f95ed63 100644 --- a/Lib/test/test_bisect.py +++ b/Lib/test/test_bisect.py @@ -239,7 +239,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) |