fix: ERE alternation pattern in HTML body check (BRE \| → ERE |)
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 53s
Docker Build and Push / test (pull_request) Successful in 35s
Docker Build and Push / push (pull_request) Has been skipped

This commit is contained in:
Sagent
2026-06-08 22:37:07 +00:00
parent 000c52d548
commit afabde99c4
+1 -1
View File
@@ -84,7 +84,7 @@ curl -s -o /dev/null -D "$TMPDIR/headers" "$BASE_URL/"
assert_contains "Content-Type text/html" "text/html" "$TMPDIR/headers"
# Test 3: Body contains HTML
assert_contains "Body is HTML" "<html\|<!DOCTYPE" "$TMPDIR/body"
assert_contains "Body is HTML" "<html|DOCTYPE" "$TMPDIR/body"
echo ""
echo "$PASSED/$(($PASSED + $FAILED)) tests passed"