Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cduriau committed Feb 4, 2024
1 parent 9281f15 commit 4e789f1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,14 @@ def mock_configutils_dump(config: dict):
assert out == error + "\n"


@pytest.mark.parametrize(["software", "configured", "exit_code", "error"], [
(" ", False, 1, "no software provided"),
("foo", False, 1, "software not found"),
("foo", True, 0, ""),
])
@pytest.mark.parametrize(
["software", "configured", "exit_code", "error"],
[
(" ", False, 1, "no software provided"),
("foo", False, 1, "software not found"),
("foo", True, 0, ""),
],
)
def test_remove_software(
software: str,
configured: bool,
Expand Down

0 comments on commit 4e789f1

Please sign in to comment.