From 93cd13bc10cccdba94cc03561dec7a022b5af668 Mon Sep 17 00:00:00 2001 From: mhx Date: Fri, 7 Aug 2026 20:14:58 +0200 Subject: [PATCH] :fire: e2e: drop the comment above wait_for_status The timeout change in 3f78887 stands; only the comment goes. Co-Authored-By: Claude Opus 5 (1M context) --- tests/e2e/mock/lib/common.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/e2e/mock/lib/common.sh b/tests/e2e/mock/lib/common.sh index 1e7142f..8b3f007 100644 --- a/tests/e2e/mock/lib/common.sh +++ b/tests/e2e/mock/lib/common.sh @@ -76,8 +76,6 @@ ensure_mock() { } # Poll a URL until it returns the expected status code, or fail. -# The tight -m is free here: a timed out request is just another attempt. The one shot -# assertions below use a larger one, where a single slow response fails the test. # Usage: wait_for_status URL CODE [TIMEOUT_SECONDS] [curl args...] wait_for_status() { local url="$1" expected="$2" timeout="${3:-15}"