Skip to content

Commit

Permalink
Remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinBinkowski committed Aug 17, 2022
1 parent c467f36 commit 22ca537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "flake8_unused_fixtures"
version = "0.1.1"
version = "0.2.0"
description = "Warn about unnecesary fixtures in tests definition."
authors = ["Marcin Binkowski <binq661@gmail.com>"]
repository = "https://github.com/MarcinBinkowski/flake8_unused_fixtures"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_flake8_unused_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_many_fixtures_all_unused(keyword, line_1, line_2):


@pytest.mark.parametrize("keyword", ("def", "async def"))
def test_used_fixture_in_class(keyword, line):
def test_used_fixture_in_class(keyword):
test_code = f"""
@pytest.fixture
{keyword} fxt():
Expand Down

0 comments on commit 22ca537

Please sign in to comment.