commit | 2ab0552b5e3a7ff33e777d6105632b2c1bcec59a | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Wed Feb 27 01:08:30 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Wed Feb 27 01:08:30 2008 +0000 |
tree | dfbd0f7035402165dc076b02808ba7ecbbd7a6e0 | |
parent | 3bd771263d21ba7f209d31d96141ff558dd1266f [diff] [blame] |
Larger test range
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 9868325..79c4b3a 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py
@@ -59,7 +59,7 @@ self.assertRaises(ValueError, combinations, 'abc', 32) # r is too big self.assertEqual(list(combinations(range(4), 3)), [(0,1,2), (0,1,3), (0,2,3), (1,2,3)]) - for n in range(6): + for n in range(8): values = [5*x-12 for x in range(n)] for r in range(n+1): result = list(combinations(values, r))