diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 22:37:50 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 22:37:50 +0200 |
commit | 26d6f76f989a490feb3df1761c75cd4f331ada67 (patch) | |
tree | 46d216281b88fadfcb9ed0aa7a1a0ebc081b66a4 /Lib/test/test_bisect.py | |
parent | d4bcf4143dfc78fbb388ed8b6171f28a049168ea (diff) | |
download | cpython-26d6f76f989a490feb3df1761c75cd4f331ada67.tar.gz |
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 2ac3a68302..f95ed635c3 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) |