From b2552710167555a8269697847f92c1eca543c490 Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Mon, 5 Apr 2021 21:32:39 +1000 Subject: [PATCH] Fix duplicate test name --- bulkredditdownloader/tests/test_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bulkredditdownloader/tests/test_integration.py b/bulkredditdownloader/tests/test_integration.py index e41b1c1..b38fbff 100644 --- a/bulkredditdownloader/tests/test_integration.py +++ b/bulkredditdownloader/tests/test_integration.py @@ -262,7 +262,7 @@ def test_cli_download_use_default_config(tmp_path: Path): @pytest.mark.parametrize('test_args', ( ['-l', 'm2601g', '--exclude-id', 'm2601g'], )) -def test_cli_download_links(test_args: list[str], tmp_path: Path): +def test_cli_download_links_exclusion(test_args: list[str], tmp_path: Path): runner = CliRunner() test_args = ['download', str(tmp_path), '-v', '--config', 'test_config.cfg'] + test_args result = runner.invoke(cli, test_args)