We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf51516 commit f2097b6Copy full SHA for f2097b6
1 file changed
tests/test_pixmap.py
@@ -569,7 +569,10 @@ def test_4423():
569
570
assert not ee, f'Received unexpected exception: {e}'
571
wt = pymupdf.TOOLS.mupdf_warnings()
572
- assert wt == 'format error: cannot find object in xref (56 0 R)\nformat error: cannot find object in xref (68 0 R)'
+ if pymupdf.mupdf_version_tuple >= (1, 28, 0):
573
+ assert wt == ''
574
+ else:
575
+ assert wt == 'format error: cannot find object in xref (56 0 R)\nformat error: cannot find object in xref (68 0 R)'
576
577
578
def test_4445():
0 commit comments