Commit 62f7e8b0 authored by Mark Dickinson's avatar Mark Dickinson

Fix unused variable in test_factorial.

parent f09bc660
......@@ -375,7 +375,7 @@ class MathTests(unittest.TestCase):
return result
values = range(10) + [50, 100, 500]
random.shuffle(values)
for x in range(10):
for x in values:
for cast in (int, long, float):
self.assertEqual(math.factorial(cast(x)), fact(x), (x, fact(x), math.factorial(x)))
self.assertRaises(ValueError, math.factorial, -1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment