Skip to content

Commit

Permalink
Fix test tune_in is not a coroutine
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Feb 21, 2025
1 parent 3a54b51 commit 72c985f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pytests/unit/test_minion.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ async def test_when_ping_interval_is_set_the_callback_should_be_added_to_periodi
try:
minion.connected = MagicMock(side_effect=(False, True))
minion._fire_master_minion_start = MagicMock()
await minion.tune_in(start=False)
minion.tune_in(start=False)
except RuntimeError:
pass

Expand Down

0 comments on commit 72c985f

Please sign in to comment.