diff options
Diffstat (limited to 'test/option')
-rw-r--r-- | test/option/md5-chunksize.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option/md5-chunksize.py b/test/option/md5-chunksize.py index acd3492..375208d 100644 --- a/test/option/md5-chunksize.py +++ b/test/option/md5-chunksize.py @@ -47,8 +47,8 @@ f2 = env.B(target = 'f2.out', source = 'f2.in') Requires(f2, f1) """ % locals()) -test.write('f1.in', str(range(10))) -test.write('f2.in', str(range(100000))) +test.write('f1.in', str(list(range(10)))) +test.write('f2.in', str(list(range(100000)))) expected_stdout = test.wrap_stdout("""\ %(_python_)s build.py f1.out f1.in |