From 569c5bc0f8a6dd4d12597cae26a72d1921d849ab Mon Sep 17 00:00:00 2001 From: George Kapetanakis Date: Wed, 11 Mar 2026 15:28:46 -0400 Subject: [PATCH] Fix exit code checking in tests/test_webhook_feature.sh --- tests/test_webhook_feature.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_webhook_feature.sh b/tests/test_webhook_feature.sh index 20eab2a10..0fb2620c6 100755 --- a/tests/test_webhook_feature.sh +++ b/tests/test_webhook_feature.sh @@ -286,8 +286,10 @@ python3 /tmp/test_webhook.py & WEBHOOK_PID=$! # Wait for test to complete +set +e wait $WEBHOOK_PID TEST_EXIT_CODE=$? +set -e # Step 7: Verify results log_info "Step 7: Verifying test results..."