diff --git a/tests/components/webostv/test_device_trigger.py b/tests/components/webostv/test_device_trigger.py index 5205f6ae7a1..8d62d4e0b17 100644 --- a/tests/components/webostv/test_device_trigger.py +++ b/tests/components/webostv/test_device_trigger.py @@ -92,7 +92,6 @@ async def test_if_fires_on_turn_on_request(hass: HomeAssistant, calls, client) - blocking=True, ) - await hass.async_block_till_done() assert len(calls) == 2 assert calls[0].data["some"] == device.id assert calls[0].data["id"] == 0 diff --git a/tests/components/webostv/test_trigger.py b/tests/components/webostv/test_trigger.py index dd119bd0d5a..73c55df8807 100644 --- a/tests/components/webostv/test_trigger.py +++ b/tests/components/webostv/test_trigger.py @@ -56,7 +56,6 @@ async def test_webostv_turn_on_trigger_device_id( blocking=True, ) - await hass.async_block_till_done() assert len(calls) == 1 assert calls[0].data["some"] == device.id assert calls[0].data["id"] == 0 @@ -74,7 +73,6 @@ async def test_webostv_turn_on_trigger_device_id( blocking=True, ) - await hass.async_block_till_done() assert len(calls) == 0 @@ -113,7 +111,6 @@ async def test_webostv_turn_on_trigger_entity_id( blocking=True, ) - await hass.async_block_till_done() assert len(calls) == 1 assert calls[0].data["some"] == ENTITY_ID assert calls[0].data["id"] == 0