Skip to content

Commit

Permalink
Remove dependency on unused fixtures (#1941)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexagonrecursion committed Mar 3, 2021
1 parent 93a9667 commit de42464
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Alexander Loechel
Alexander Schepanovski
Alexandre Conrad
Allan Feldman
Andrey Bienkowski
Andrii Soldatenko
Andrzej Klajnert
Anthon van der Neuth
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/config/test_config_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_parallel_number_negative(newconfig, capsys):
assert "value must be positive" in err


def test_depends(newconfig, capsys):
def test_depends(newconfig):
config = newconfig(
"""\
[tox]
Expand All @@ -49,7 +49,7 @@ def test_depends(newconfig, capsys):
assert config.envconfigs["py"].depends == ("py37", "py36")


def test_depends_multi_row_facotr(newconfig, capsys):
def test_depends_multi_row_facotr(newconfig):
config = newconfig(
"""\
[tox]
Expand All @@ -61,7 +61,7 @@ def test_depends_multi_row_facotr(newconfig, capsys):
assert config.envconfigs["py"].depends == ("py37", "py36-a", "py36-b")


def test_depends_factor(newconfig, capsys):
def test_depends_factor(newconfig):
config = newconfig(
"""\
[tox]
Expand Down

0 comments on commit de42464

Please sign in to comment.