From 6864bb850862f1ea74b119ab66e5218092f0d25a Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Tue, 30 Apr 2024 15:18:41 +0300 Subject: [PATCH] tests: remove unused imports from test_cli.py --- tests/test_cli.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index eee04d4..e6e62f4 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,4 +1,3 @@ -import copy import os import shutil @@ -9,7 +8,6 @@ import pydantic import ruamel.yaml import pytest import typer.testing -import time_machine def test_welcome(): @@ -416,7 +414,7 @@ def test_render_command_with_local_latex_command(tmp_path, input_file_path): runner.invoke( cli.app, - ["render", str(input_file_path), "--local-latex-command", "pdflatex"], + ["render", str(input_file_path), "--use-local-latex-command", "pdflatex"], )