Skip to content

Commit

Permalink
Don’t list unused test fixture
Browse files Browse the repository at this point in the history
On top, this broke tests with old pytest versions missing the tmp_path
fixture.

Signed-off-by: Nils Philippsen <[email protected]>
  • Loading branch information
nphilipp committed Jan 5, 2024
1 parent 8f6cf35 commit 15577d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def test_specfile_uses_rpmautospec_no_macros(self, caplog):
assert result is False

@pytest.mark.parametrize("processed", (False, True), ids=("unprocessed", "processed"))
def test_specfile_uses_rpmautospec(self, processed, tmp_path, caplog):
def test_specfile_uses_rpmautospec(self, processed, caplog):
"""Test both features on specfile_uses_rpmautospec()"""
caplog.set_level(logging.DEBUG)

Expand Down

0 comments on commit 15577d6

Please sign in to comment.