summaryrefslogtreecommitdiff
path: root/Lib/test/test_bisect.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-31 22:37:50 +0200
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-31 22:37:50 +0200
commit26d6f76f989a490feb3df1761c75cd4f331ada67 (patch)
tree46d216281b88fadfcb9ed0aa7a1a0ebc081b66a4 /Lib/test/test_bisect.py
parentd4bcf4143dfc78fbb388ed8b6171f28a049168ea (diff)
downloadcpython-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.py2
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)