Skip to content

Commit 19c69e4

Browse files
committed
fix test test_emit_system_info_event
1 parent e201147 commit 19c69e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/events/test_local_event_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async def test_emit_system_info_event() -> None:
1313
mocked_listener = AsyncMock()
1414

1515
async def async_listener(payload: Any) -> None:
16-
mocked_listener(payload)
16+
await mocked_listener(payload)
1717

1818
system_info_interval = timedelta(milliseconds=50)
1919
test_tolerance_coefficient = 10

0 commit comments

Comments
 (0)