From 66f82fad3526be254656c6f1ef9a57d708a582fd Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Wed, 13 May 2026 17:14:05 +0100 Subject: [PATCH] Fix flaky collector tests --- dimos/utils/testing/collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dimos/utils/testing/collector.py b/dimos/utils/testing/collector.py index faf9464843..182fda4cf6 100644 --- a/dimos/utils/testing/collector.py +++ b/dimos/utils/testing/collector.py @@ -30,7 +30,7 @@ class CallbackCollector: assert len(collector.results) == 3 """ - def __init__(self, n: int, timeout: float = 5.0) -> None: + def __init__(self, n: int, timeout: float = 15.0) -> None: self.results: list[tuple[Any, Any]] = [] self._done = threading.Event() self._n = n