aboutsummaryrefslogtreecommitdiff
path: root/tests/test_cli_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cli_options.py')
-rw-r--r--tests/test_cli_options.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_cli_options.py b/tests/test_cli_options.py
index f898146..d75f7c0 100644
--- a/tests/test_cli_options.py
+++ b/tests/test_cli_options.py
@@ -147,9 +147,6 @@ def test_get_target_opts(args: dict | None, expected_opts: list[str]) -> None:
[["--output", "report.json"], "report.json"],
[["--output", "REPORT.JSON"], "REPORT.JSON"],
[["--output", "some_folder/report.json"], "some_folder/report.json"],
- [["--output", "report.csv"], "report.csv"],
- [["--output", "REPORT.CSV"], "REPORT.CSV"],
- [["--output", "some_folder/report.csv"], "some_folder/report.csv"],
],
)
def test_output_options(output_parameters: list[str], expected_path: str) -> None: