tests: update test_render_command_with_use_local_latex_option

This commit is contained in:
Sina Atalay 2024-03-29 18:09:24 +01:00
parent 4d26c7335c
commit 8c4635ce7a
1 changed files with 4 additions and 1 deletions

View File

@ -187,7 +187,10 @@ def test_render_command_with_use_local_latex_option(tmp_path, input_file_path):
# copy input file to the temporary directory to create the output directory there: # copy input file to the temporary directory to create the output directory there:
input_file_path = shutil.copy(input_file_path, tmp_path) input_file_path = shutil.copy(input_file_path, tmp_path)
runner.invoke(cli.app, ["render", str(input_file_path), "--use-local-latex"]) runner.invoke(
cli.app,
["render", str(input_file_path), "--use-local-latex-command", "pdflatex"],
)
def test_new_command(tmp_path): def test_new_command(tmp_path):