forked from josch/plakativ
test.py: only unlink after close() because windows cannot unlink files with open handles on them
This commit is contained in:
parent
72b3c6d924
commit
2262810aeb
1 changed files with 2 additions and 1 deletions
3
test.py
3
test.py
|
@ -181,7 +181,6 @@ def test_cases(postersize, input_pagesize, output_pagesize, strategy, expected):
|
|||
os.unlink(infile)
|
||||
|
||||
doc = fitz.open(outfile)
|
||||
os.unlink(outfile)
|
||||
|
||||
for pnum, (bbox, matrix) in zip(range(doc.pageCount), expected):
|
||||
xreflist = doc._getPageInfo(pnum, 3)
|
||||
|
@ -214,3 +213,5 @@ def test_cases(postersize, input_pagesize, output_pagesize, strategy, expected):
|
|||
newmatrix = keyvals["/Matrix"].strip(" []").split()
|
||||
for v1, v2 in zip(matrix, newmatrix):
|
||||
assert math.isclose(float(v1), float(v2), abs_tol=0.00001)
|
||||
doc.close()
|
||||
os.unlink(outfile)
|
||||
|
|
Loading…
Reference in a new issue