Skip to content
Snippets Groups Projects
Unverified Commit 84f58543 authored by epenet's avatar epenet Committed by GitHub
Browse files

Fix lingering timers in image processing tests (#90829)

parent 35b642c6
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,7 @@ async def test_setup_component(hass: HomeAssistant) -> None:
with assert_setup_component(1, ip.DOMAIN):
assert await async_setup_component(hass, ip.DOMAIN, config)
await hass.async_block_till_done()
async def test_setup_component_with_service(hass: HomeAssistant) -> None:
......@@ -66,6 +67,7 @@ async def test_setup_component_with_service(hass: HomeAssistant) -> None:
with assert_setup_component(1, ip.DOMAIN):
assert await async_setup_component(hass, ip.DOMAIN, config)
await hass.async_block_till_done()
assert hass.services.has_service(ip.DOMAIN, "scan")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment