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 2f7fb91 commit 2bf1debCopy full SHA for 2bf1deb
tests/resources/test_1645_expected_1.24.pdf
2.54 KB
tests/test_annots.py
@@ -173,7 +173,10 @@ def test_1645():
173
Test fix for #1645.
174
'''
175
path_in = os.path.abspath( f'{__file__}/../resources/symbol-list.pdf')
176
- if fitz.mupdf_version_tuple[:2] >= (1, 22):
+
177
+ if fitz.mupdf_version_tuple[:2] >= (1, 24):
178
+ path_expected = os.path.abspath( f'{__file__}/../resources/test_1645_expected_1.24.pdf')
179
+ elif fitz.mupdf_version_tuple[:2] >= (1, 22):
180
path_expected = os.path.abspath( f'{__file__}/../resources/test_1645_expected_1.22.pdf')
181
else:
182
path_expected = os.path.abspath( f'{__file__}/../resources/test_1645_expected.pdf')
0 commit comments