summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_random.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_random.py')
-rw-r--r--Lib/test/test_random.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py
index 94c20ce..df82990 100644
--- a/Lib/test/test_random.py
+++ b/Lib/test/test_random.py
@@ -55,8 +55,6 @@ class TestBasicOps(unittest.TestCase):
with test_support.check_py3k_warnings(quiet=True):
self.assertRaises(TypeError, self.gen.jumpahead) # needs an arg
- self.assertRaises(TypeError, self.gen.jumpahead, "ick") # wrong type
- self.assertRaises(TypeError, self.gen.jumpahead, 2.3) # wrong type
self.assertRaises(TypeError, self.gen.jumpahead, 2, 3) # too many
def test_sample(self):