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 c2e3271 commit cc81a38Copy full SHA for cc81a38
tests/test_textextract.py
@@ -374,8 +374,9 @@ def get_all_page_from_pdf(document, last_page=None):
374
375
assert texts1 == texts0
376
377
- wt = pymupdf.TOOLS.mupdf_warnings()
378
- assert wt == 'Actualtext with no position. Text may be lost or mispositioned.\n... repeated 434 times...'
+ if pymupdf.mupdf_version_tuple < (1, 27):
+ wt = pymupdf.TOOLS.mupdf_warnings()
379
+ assert wt == 'Actualtext with no position. Text may be lost or mispositioned.\n... repeated 434 times...'
380
381
def test_3650():
382
path = os.path.normpath(f'{__file__}/../../tests/resources/test_3650.pdf')
0 commit comments