diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 20:38:44 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 20:38:44 (GMT) |
commit | 7e4f122560a0a1abb6eb4c72c1647ef9a4e09420 (patch) | |
tree | 55551c806750c179d609938fd4918293ca883f5f /Lib/test | |
parent | cd2dc4a55b85a5b586d3a1e99ca411cb2cb9614f (diff) | |
parent | 091bf53287da2a32b4799f06761cf47a2108cb6c (diff) | |
download | cpython-7e4f122560a0a1abb6eb4c72c1647ef9a4e09420.zip cpython-7e4f122560a0a1abb6eb4c72c1647ef9a4e09420.tar.gz cpython-7e4f122560a0a1abb6eb4c72c1647ef9a4e09420.tar.bz2 |
Merge issue #16377: Fix bisect unittest.
Patch by 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 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) |