From ac9d9b8f8cb8a138a4cfc42066faace780b7d293 Mon Sep 17 00:00:00 2001 From: nesquena-hermes Date: Mon, 29 Jun 2026 19:53:25 +0000 Subject: [PATCH] test(#5201): widen sse-visibility reopen window to 2200 after master-rebase (maintainer rebase-fix) The rebase onto current master (which carries #5172's window bumps) left the reopen-path test window at 1600, but #5201 grows startSessionStream so the 'else if (_sessionStreamHiddenSid)' reopen assertion now lands at offset ~1741. Widen to 2200 (matching #5201's sibling windows) so the assertion reaches the code. Test-window only; production unchanged. --- tests/test_issue3996_sse_visibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_issue3996_sse_visibility.py b/tests/test_issue3996_sse_visibility.py index 915887904..3c771e659 100644 --- a/tests/test_issue3996_sse_visibility.py +++ b/tests/test_issue3996_sse_visibility.py @@ -61,7 +61,7 @@ def test_session_stream_reopens_from_dedicated_var_not_nulled_id(): ) start_idx = MESSAGES_JS.find("function startSessionStream(sid)") - block = MESSAGES_JS[start_idx:start_idx + 1600] + block = MESSAGES_JS[start_idx:start_idx + 2200] # On hide: capture the id, then stop. assert "_sessionStreamHiddenSid = _sessionStreamSessionId" in block