forked from josch/img2pdf
src/tests/__init__.py: make path OS agnostic (slash vs backslash)
This commit is contained in:
parent
5c7ffb09a1
commit
f4b296cef3
1 changed files with 1 additions and 1 deletions
|
@ -489,7 +489,7 @@ def test_suite():
|
|||
self.skipTest("pdfrw not available")
|
||||
# we do not test animation.gif with pdfrw because it doesn't support
|
||||
# saving hexadecimal palette data
|
||||
if f.endswith("/animation.gif") and engine == img2pdf.Engine.pdfrw:
|
||||
if f.endswith(os.path.sep+"animation.gif") and engine == img2pdf.Engine.pdfrw:
|
||||
self.skipTest("pdfrw does not support palletes")
|
||||
with open(f, "rb") as inf:
|
||||
orig_imgdata = inf.read()
|
||||
|
|
Loading…
Reference in a new issue