From fa9ea778127f338a973854d75c26939a2b787708 Mon Sep 17 00:00:00 2001 From: Beth Probert Date: Thu, 5 Mar 2026 13:42:55 +0000 Subject: [PATCH] Ruff check --- tests/unit_tests/test_stitching.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit_tests/test_stitching.py b/tests/unit_tests/test_stitching.py index 5ae8842e..34d7fe7d 100644 --- a/tests/unit_tests/test_stitching.py +++ b/tests/unit_tests/test_stitching.py @@ -46,7 +46,9 @@ def test_validate_command_forbidden(): ): validate_command(["sudo", "rm", "-rf", "/"]) - with pytest.raises(StitcherValidationError, match="Forbidden element 'sh' detected"): + with pytest.raises( + StitcherValidationError, match="Forbidden element 'sh' detected" + ): validate_command(["sh", "-c", "whoami"]) with pytest.raises(