From f62e7cd5e89bbefb9d8566a8388d56112db83bfd Mon Sep 17 00:00:00 2001 From: Aditya Wasudeo Date: Sat, 28 Feb 2026 08:33:44 -0800 Subject: [PATCH] Fixed a flaky windows test --- tests/test_kernel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_kernel.py b/tests/test_kernel.py index 7fc4d44d2..5fc828435 100644 --- a/tests/test_kernel.py +++ b/tests/test_kernel.py @@ -203,7 +203,7 @@ def parent_target(): received = 0 while received < iterations: - msg = kc.get_iopub_msg(timeout=interval * 2) + msg = kc.get_iopub_msg(timeout=interval * 10) if msg["msg_type"] != "stream": continue content = msg["content"] @@ -235,7 +235,7 @@ async def async_task(): received = 0 while received < iterations: - msg = kc.get_iopub_msg(timeout=interval * 2) + msg = kc.get_iopub_msg(timeout=interval * 10) if msg["msg_type"] != "stream": continue content = msg["content"]