From 1bd0341243cee2747a5b0cf7ec8d15b44825a44f Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 15 Apr 2026 07:24:53 +0000 Subject: [PATCH] fix: expand test_sprint36 search window for setBusy after stopClarifyPolling additions --- tests/test_sprint36.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_sprint36.py b/tests/test_sprint36.py index c6b265b..1475d51 100644 --- a/tests/test_sprint36.py +++ b/tests/test_sprint36.py @@ -154,7 +154,7 @@ def test_sse_cancel_handler_calls_set_busy(): if idx == -1: idx = src.find('addEventListener("cancel"') assert idx != -1 - block = src[idx:idx + 800] + block = src[idx:idx + 1000] assert "setBusy(false)" in block, ( "SSE cancel handler no longer calls setBusy(false)" )