We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b51bb9 commit 2ae420bCopy full SHA for 2ae420b
tests/test_general.py
@@ -1476,9 +1476,10 @@ def test_3654():
1476
content += page.get_text() + '\n\n'
1477
content = content.strip()
1478
1479
- # As of 2024-07-04 we get a warning for this input file.
1480
- wt = pymupdf.TOOLS.mupdf_warnings()
1481
- assert wt == 'dropping unclosed output'
+ if pymupdf.mupdf_version_tuple < (1, 25):
+ # As of 2024-07-04 we get a warning for this input file.
+ wt = pymupdf.TOOLS.mupdf_warnings()
1482
+ assert wt == 'dropping unclosed output'
1483
1484
def test_3727():
1485
if pymupdf.mupdf_version_tuple < (1, 24, 9):
0 commit comments