Skip to content

Commit 90c834f

Browse files
committed
Fix test tune_in is not a coroutine
1 parent 788b42d commit 90c834f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pytests/unit/test_minion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ async def test_when_ping_interval_is_set_the_callback_should_be_added_to_periodi
634634
try:
635635
minion.connected = MagicMock(side_effect=(False, True))
636636
minion._fire_master_minion_start = MagicMock()
637-
await minion.tune_in(start=False)
637+
minion.tune_in(start=False)
638638
except RuntimeError:
639639
pass
640640

0 commit comments

Comments
 (0)