From de42464bd5c4d47e14b85d55ea659b94be61f727 Mon Sep 17 00:00:00 2001 From: Andrey Bienkowski Date: Wed, 3 Mar 2021 11:20:49 +0000 Subject: [PATCH] Remove dependency on unused fixtures (#1941) --- CONTRIBUTORS | 1 + tests/unit/config/test_config_parallel.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 1e085ba70..55dd6d1b3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -4,6 +4,7 @@ Alexander Loechel Alexander Schepanovski Alexandre Conrad Allan Feldman +Andrey Bienkowski Andrii Soldatenko Andrzej Klajnert Anthon van der Neuth diff --git a/tests/unit/config/test_config_parallel.py b/tests/unit/config/test_config_parallel.py index 785b77104..0e42a2c59 100644 --- a/tests/unit/config/test_config_parallel.py +++ b/tests/unit/config/test_config_parallel.py @@ -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] @@ -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] @@ -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]