Skip to content

Commit 0f1f8b3

Browse files
Fix flaky collector tests (#2079)
1 parent 6e47ba4 commit 0f1f8b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dimos/utils/testing/collector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CallbackCollector:
3030
assert len(collector.results) == 3
3131
"""
3232

33-
def __init__(self, n: int, timeout: float = 5.0) -> None:
33+
def __init__(self, n: int, timeout: float = 15.0) -> None:
3434
self.results: list[tuple[Any, Any]] = []
3535
self._done = threading.Event()
3636
self._n = n

0 commit comments

Comments
 (0)