Skip to content

Commit 0d4d4cd

Browse files
[3.15] gh-150397: Fix pyexpat bigmem test (GH-151329) (#151348)
gh-150397: Fix pyexpat bigmem test (GH-151329) Add missing parameter (size). (cherry picked from commit 0bbde07) Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent dc7ca40 commit 0d4d4cd

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
@@ -827,7 +827,7 @@ def test_change_size_2(self):
827827
@support.requires_resource('cpu')
828828
@support.requires_resource('walltime')
829829
@support.bigmemtest(size=2**31, memuse=4, dry_run=False)
830-
def test_large_character_data_does_not_crash(self):
830+
def test_large_character_data_does_not_crash(self, size):
831831
# See https://github.com/python/cpython/issues/148441
832832
parser = expat.ParserCreate()
833833
parser.buffer_text = True

0 commit comments

Comments
 (0)