summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bisect.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-31 20:37:50 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-31 20:37:50 (GMT)
commiteda1f4cf07557f030a33130c5845f3cdca8e2fba (patch)
tree3fc169e4e1ccd6f693ad092e37e2a1a3aa2f2360 /Lib/test/test_bisect.py
parent01e1e35f6a097fae894e5e96528ae22cea997de3 (diff)
downloadcpython-eda1f4cf07557f030a33130c5845f3cdca8e2fba.zip
cpython-eda1f4cf07557f030a33130c5845f3cdca8e2fba.tar.gz
cpython-eda1f4cf07557f030a33130c5845f3cdca8e2fba.tar.bz2
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 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)