Commit 0673088d authored by Antoine Pitrou's avatar Antoine Pitrou

Fix memory constraint for test_decodeascii

parent 37484dc3
......@@ -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')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment