diff options
author | Raymond Hettinger <python@rcn.com> | 2008-02-27 01:08:30 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-02-27 01:08:30 (GMT) |
commit | 2ab0552b5e3a7ff33e777d6105632b2c1bcec59a (patch) | |
tree | dfbd0f7035402165dc076b02808ba7ecbbd7a6e0 /Lib | |
parent | 3bd771263d21ba7f209d31d96141ff558dd1266f (diff) | |
download | cpython-2ab0552b5e3a7ff33e777d6105632b2c1bcec59a.zip cpython-2ab0552b5e3a7ff33e777d6105632b2c1bcec59a.tar.gz cpython-2ab0552b5e3a7ff33e777d6105632b2c1bcec59a.tar.bz2 |
Larger test range
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_itertools.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ class TestBasicOps(unittest.TestCase): 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)) |