Skip to content

Commit 0bbde07

Browse files
authored
gh-150397: Fix pyexpat bigmem test (#151329)
Add missing parameter (size).
1 parent 4b44b1e commit 0bbde07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_pyexpat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ def test_change_size_2(self):
876876
@support.requires_resource('cpu')
877877
@support.requires_resource('walltime')
878878
@support.bigmemtest(size=2**31, memuse=4, dry_run=False)
879-
def test_large_character_data_does_not_crash(self):
879+
def test_large_character_data_does_not_crash(self, size):
880880
# See https://github.com/python/cpython/issues/148441
881881
parser = expat.ParserCreate()
882882
parser.buffer_text = True

0 commit comments

Comments
 (0)