diff --git a/tests/test_cli.py b/tests/test_cli.py index 0722f83..5e4720b 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -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: 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):