🔥 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) <noreply@anthropic.com>
This commit is contained in:
mhx
2026-08-07 20:14:58 +02:00
co-authored by Claude Opus 5
parent 9f99c431c3
commit 93cd13bc10
-2
View File
@@ -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}"