diff --git a/tests/test_click.py b/tests/test_click.py index 2c1e469..2e5cb13 100644 --- a/tests/test_click.py +++ b/tests/test_click.py @@ -7,13 +7,4 @@ def test_nothing_found(): runner = CliRunner() result = runner.invoke(main, [""]) - assert result.exit_code == 0 - assert "Usage: packupill FILENAME.asc" in result.output - - -def test_nothing_file(): - runner = CliRunner() - result = runner.invoke(main, ["FILENAME.asc"]) - - assert result.exit_code == 0 - assert "Error: File 'FILENAME.asc' not found!" in result.output + assert result.exit_code == 2