diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-31 23:02:18 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-31 23:02:18 (GMT) |
commit | 5e5bbfb69b5c0eb2f72c3e1ec702f9363defe05f (patch) | |
tree | f903aa7730fe8d8c1ea2d5e082885e17d0b033e3 /Lib/test | |
parent | e132f527c9ae1e6b375a39014563015c6391f52f (diff) | |
parent | 091bf53287da2a32b4799f06761cf47a2108cb6c (diff) | |
download | cpython-5e5bbfb69b5c0eb2f72c3e1ec702f9363defe05f.zip cpython-5e5bbfb69b5c0eb2f72c3e1ec702f9363defe05f.tar.gz cpython-5e5bbfb69b5c0eb2f72c3e1ec702f9363defe05f.tar.bz2 |
merge heads
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) |