mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix memory constraint for test_decodeascii
This commit is contained in:
parent
37484dc324
commit
0673088ded
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ class StrTest(unittest.TestCase):
|
|||
except MemoryError:
|
||||
pass # acceptable on 32-bit
|
||||
|
||||
@precisionbigmemtest(size=_2G-1, memuse=2)
|
||||
@precisionbigmemtest(size=_2G-1, memuse=4)
|
||||
def test_decodeascii(self, size):
|
||||
return self.basic_encode_test(size, 'ascii', c='A')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue