diff --git a/tests/test_integration_tox3.py b/tests/test_integration_tox3.py index 0f5eb35..77b2941 100644 --- a/tests/test_integration_tox3.py +++ b/tests/test_integration_tox3.py @@ -113,11 +113,11 @@ def test_print_deps_with_tox_minversion(projdir, toxenv, print_deps_stdout_arg): @pytest.mark.parametrize("toxenv", envs_from_tox_ini()) def test_print_deps_with_tox_requires(projdir, toxenv, print_deps_stdout_arg): with modify_config(projdir / "tox.ini") as config: - config["tox"]["requires"] = "\n setuptools > 30\n pluggy" + config["tox"]["requires"] = "\n pytest > 5\n pluggy" result = tox("-e", toxenv, print_deps_stdout_arg) expected = textwrap.dedent( f""" - setuptools > 30 + pytest > 5 pluggy six py @@ -133,12 +133,12 @@ def test_print_deps_with_tox_minversion_and_requires( ): with modify_config(projdir / "tox.ini") as config: config["tox"]["minversion"] = "3.13" - config["tox"]["requires"] = "\n setuptools > 30\n pluggy" + config["tox"]["requires"] = "\n pytest > 5\n pluggy" result = tox("-e", toxenv, print_deps_stdout_arg) expected = textwrap.dedent( f""" tox >= 3.13 - setuptools > 30 + pytest > 5 pluggy six py diff --git a/tests/test_integration_tox4.py b/tests/test_integration_tox4.py index 34e8b0d..f62348d 100644 --- a/tests/test_integration_tox4.py +++ b/tests/test_integration_tox4.py @@ -87,11 +87,11 @@ def test_print_deps_with_tox_minversion(projdir, toxenv, print_deps_stdout_arg): @pytest.mark.parametrize("toxenv", envs_from_tox_ini()) def test_print_deps_with_tox_requires(projdir, toxenv, print_deps_stdout_arg): with modify_config(projdir / "tox.ini") as config: - config["tox"]["requires"] = "\n setuptools > 30\n pluggy" + config["tox"]["requires"] = "\n pytest > 5\n pluggy" result = tox("-e", toxenv, print_deps_stdout_arg) expected = textwrap.dedent( f""" - setuptools>30 + pytest>5 pluggy tox six @@ -108,11 +108,11 @@ def test_print_deps_with_tox_minversion_and_requires( ): with modify_config(projdir / "tox.ini") as config: config["tox"]["minversion"] = "3.13" - config["tox"]["requires"] = "\n setuptools > 30\n pluggy" + config["tox"]["requires"] = "\n pytest > 5\n pluggy" result = tox("-e", toxenv, print_deps_stdout_arg) expected = textwrap.dedent( f""" - setuptools>30 + pytest>5 pluggy tox>=3.13 six