Skip to content

gh-115133: Fix tests for XMLPullParser with Expat 2.6.0 #115164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Lib/test/test_xml_etree.py
  • Loading branch information
serhiy-storchaka authored Feb 10, 2024
commit aaffd5d57c9b4d3cbef989eb8dc6cbc44cd7f70b
4 changes: 2 additions & 2 deletions Lib/test/test_xml_etree.py
Original file line number Diff line number Diff line change
Expand Up @@ -1514,8 +1514,8 @@ def test_simple_xml_chunk_1(self):
def test_simple_xml_chunk_5(self):
self.test_simple_xml(chunk_size=5)

def test_simple_xml_chunk_8(self):
self.test_simple_xml(chunk_size=8)
def test_simple_xml_chunk_22(self):
self.test_simple_xml(chunk_size=22)

def test_feed_while_iterating(self):
parser = ET.XMLPullParser()
Expand Down