From 78709a9d76e5787bc0078b0b2ad3d81d19c32f7e Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 24 Dec 2025 11:39:00 +0100 Subject: [PATCH] test: properly wrap line --- tests/test_pip_audit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_pip_audit.py b/tests/test_pip_audit.py index fca696193..29eaca607 100644 --- a/tests/test_pip_audit.py +++ b/tests/test_pip_audit.py @@ -57,7 +57,8 @@ def test_pip_audit_no_vulnerabilities(): else: # Some other error occurred pytest.fail( - f"pip-audit failed to run properly:\n\nReturn code: {result.returncode}\nOutput: {error_output}\n" + f"pip-audit failed to run properly:\n\nReturn code: {result.returncode}\n" + f"Output: {error_output}\n" ) # Success - no vulnerabilities found