From f6ba2a07536a9a3fd0f915263785004d33033cec Mon Sep 17 00:00:00 2001 From: Jason Lam Date: Mon, 1 Jan 2024 21:51:51 +0800 Subject: [PATCH] Remove `-q` from `list --json` test --- tests/test_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_list.py b/tests/test_list.py index 59396eaeb0..9b6ef401fa 100644 --- a/tests/test_list.py +++ b/tests/test_list.py @@ -80,7 +80,7 @@ def test_list_json(pipx_temp_env, capsys): assert not run_pipx_cli(["inject", "pylint", PKG["isort"]["spec"]]) captured = capsys.readouterr() - assert not run_pipx_cli(["list", "-q", "--json"]) + assert not run_pipx_cli(["list", "--json"]) captured = capsys.readouterr() assert not re.search(r"\S", captured.err)