tests: fix unit tests

This commit is contained in:
Aleix Conchillo Flaqué
2025-08-18 16:17:51 -07:00
parent 75a6ee839b
commit 4015aedb86
3 changed files with 9 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ class SleepFrame(SystemFrame):
sleep: Duration to sleep in seconds before processing the next frame.
"""
sleep: float = 0.1
sleep: float = 0.2
class HeartbeatsObserver(BaseObserver):
@@ -100,7 +100,7 @@ class QueuedFrameProcessor(FrameProcessor):
queue_direction: The direction of frames to capture (UPSTREAM or DOWNSTREAM).
ignore_start: Whether to ignore StartFrames when capturing.
"""
super().__init__()
super().__init__(enable_direct_mode=True)
self._queue = queue
self._queue_direction = queue_direction
self._ignore_start = ignore_start