diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-03-26 01:14:08 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-03-26 01:14:08 +0100 |
commit | 3fa1aaebde6408dcfe169932d35bf922a77e64c9 (patch) | |
tree | c8c87ce19082e006e2cd9139031324d94dba71ed /Lib/test/test_bisect.py | |
parent | 765531d2d083c7a4e9478fcd960eebe04ac6b192 (diff) | |
download | cpython-git-3fa1aaebde6408dcfe169932d35bf922a77e64c9.tar.gz |
Issue #17516: do not create useless tuple: remove dummy commas in tests
Diffstat (limited to 'Lib/test/test_bisect.py')
-rw-r--r-- | Lib/test/test_bisect.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_bisect.py b/Lib/test/test_bisect.py index e5cb3d0cac..580a963f62 100644 --- a/Lib/test/test_bisect.py +++ b/Lib/test/test_bisect.py @@ -120,10 +120,10 @@ class TestBisect: def test_negative_lo(self): # Issue 3301 mod = self.module - self.assertRaises(ValueError, mod.bisect_left, [1, 2, 3], 5, -1, 3), - self.assertRaises(ValueError, mod.bisect_right, [1, 2, 3], 5, -1, 3), - self.assertRaises(ValueError, mod.insort_left, [1, 2, 3], 5, -1, 3), - self.assertRaises(ValueError, mod.insort_right, [1, 2, 3], 5, -1, 3), + self.assertRaises(ValueError, mod.bisect_left, [1, 2, 3], 5, -1, 3) + self.assertRaises(ValueError, mod.bisect_right, [1, 2, 3], 5, -1, 3) + self.assertRaises(ValueError, mod.insort_left, [1, 2, 3], 5, -1, 3) + self.assertRaises(ValueError, mod.insort_right, [1, 2, 3], 5, -1, 3) def test_large_range(self): # Issue 13496 |