Updated tests

This commit is contained in:
Jamie Hardt
2023-07-21 12:44:42 -07:00
parent 58277367c5
commit 4e64edcd85
5 changed files with 34 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ class TestPDFExport(unittest.TestCase):
tempdir = tempfile.TemporaryDirectory()
os.chdir(tempdir.name)
try:
commands.convert(path, major_mode='doc')
commands.convert(input_file=path, major_mode='doc')
except:
assert False, "Error processing file %s" % path
finally: