From 074d1ec402e0a36fc0a49a290d2891234348096b Mon Sep 17 00:00:00 2001 From: Sagent Date: Mon, 8 Jun 2026 21:57:54 +0000 Subject: [PATCH] fix: remove -f from assertion curls (TT-RSS returns 5xx during boot) --- tests/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.sh b/tests/test.sh index 1db95da..f264303 100644 --- a/tests/test.sh +++ b/tests/test.sh @@ -71,12 +71,12 @@ if [ "$READY" = false ]; then fi # Test 1: HTTP status -STATUS=$(curl -sf -o "$TMPDIR/body" -w '%{http_code}' "$BASE_URL/") +STATUS=$(curl -s -o "$TMPDIR/body" -w '%{http_code}' "$BASE_URL/") echo "HTTP status: $STATUS" assert_eq "HTTP 200" "200" "$STATUS" # Test 2: Content-Type contains text/html -curl -sf -o /dev/null -D "$TMPDIR/headers" "$BASE_URL/" +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