diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 20:38:20 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 20:38:20 (GMT) |
commit | 091bf53287da2a32b4799f06761cf47a2108cb6c (patch) | |
tree | aaff793e1974a794642718740e2411bc0a59bf41 /Lib/test/test_bisect.py | |
parent | f9fcf029740e1c1f7574f2616122355abeab2a1e (diff) | |
parent | eda1f4cf07557f030a33130c5845f3cdca8e2fba (diff) | |
download | cpython-091bf53287da2a32b4799f06761cf47a2108cb6c.zip cpython-091bf53287da2a32b4799f06761cf47a2108cb6c.tar.gz cpython-091bf53287da2a32b4799f06761cf47a2108cb6c.tar.bz2 |
Merge issue #16377: Fix bisect unittest.
Patch by Yury Selivanov.
Diffstat (limited to 'Lib/test/test_bisect.py')
-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) |