Skip to content

Commit 00d5149

Browse files
committed
Fix a test that failed on 32-bit architectures (issue #149)
1 parent 4c6705a commit 00d5149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_future/test_pasteurize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_range_slice(self):
3737
quickly on both Py3 and Py2 without a MemoryError
3838
"""
3939
code = '''
40-
for i in range(10**15)[:10]:
40+
for i in range(10**8)[:10]:
4141
pass
4242
'''
4343
self.unchanged(code, from3=True)

0 commit comments

Comments
 (0)