From 6b48528fb6e3b94bc7909686909c4dd58d8fc04d Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 15 Sep 2020 16:28:59 +0200 Subject: [PATCH] Use --print-deps-to=- in test_noquiet_installed_packages --- tests/test_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_integration.py b/tests/test_integration.py index 5fc0603..80bccde 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -351,7 +351,7 @@ def test_print_deps_without_python_command(tmp_path, print_deps_stdout_arg): assert result.stdout == expected -@pytest.mark.parametrize("flag", [None, "--print-deps-only", "--current-env"]) +@pytest.mark.parametrize("flag", [None, "--print-deps-to=-", "--current-env"]) def test_noquiet_installed_packages(flag): flags = (flag,) if flag else () result = tox("-e", NATIVE_TOXENV, *flags, quiet=False, check=False)