From 4f40a8b46b2ea2b256a1728c2dbbd935bc5f6152 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 21 Nov 2025 18:39:24 +0100 Subject: [PATCH] tests: Improve test_version output --- tests/end2end/test_invocations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py index 8d9f86ab9..5f5e70faf 100644 --- a/tests/end2end/test_invocations.py +++ b/tests/end2end/test_invocations.py @@ -251,6 +251,7 @@ def test_optimize(request, quteproc_new, capfd, level): def test_version(request): """Test invocation with --version argument.""" args = ['-m', 'qutebrowser', '--version'] + _base_args(request.config) + args.remove("--json-logging") # can't use quteproc_new here because it's confused by # early process termination proc = QProcess()