Fix unused variable in test_factorial.

This commit is contained in:
Mark Dickinson 2010-05-12 19:53:36 +00:00
parent f09bc66083
commit 62f7e8b0b8
1 changed files with 1 additions and 1 deletions

View File

@ -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)