From: Jason Lam <meowmeowcat1211@gmail.com>
Date: Mon, 1 Jan 2024 22:18:56 +0800
Subject: Remove `-q` from `list --json` test (#1181)

Origin: upstream, https://github.com/pypa/pipx/pull/1181
---
 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 59396ea..9b6ef40 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)
