We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 748ac63 commit 001a8d0Copy full SHA for 001a8d0
Lib/test/test_zipfile64.py
@@ -210,8 +210,9 @@ def test_strip_removed_large_file_with_dd_no_sig(self):
210
self.assertLess(peak, self.allowed_memory)
211
212
def _test_strip_removed_large_file_with_dd_no_sig(self, f):
213
- # Reduce data to 400 MiB for this test, as it's especially slow...
214
- self.datacount = 400*1024**2 // len(self.data)
+ # Reduce data scale for this test, as it's especially slow...
+ self.datacount = 30*1024**2 // len(self.data)
215
+ self.allowed_memory = 200*1024
216
217
file = 'file.txt'
218
file1 = 'largefile.txt'
0 commit comments