mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Add and use an async_fire_service_discovered helper (#23232)
This commit is contained in:
@@ -15,7 +15,7 @@ from homeassistant.components.homekit_controller.const import (
|
||||
from homeassistant.setup import async_setup_component
|
||||
import homeassistant.util.dt as dt_util
|
||||
from tests.common import (
|
||||
async_fire_time_changed, fire_service_discovered, load_fixture)
|
||||
async_fire_time_changed, async_fire_service_discovered, load_fixture)
|
||||
|
||||
|
||||
class FakePairing:
|
||||
@@ -221,7 +221,7 @@ async def setup_test_accessories(hass, accessories, capitalize=False):
|
||||
}
|
||||
}
|
||||
|
||||
fire_service_discovered(hass, SERVICE_HOMEKIT, discovery_info)
|
||||
async_fire_service_discovered(hass, SERVICE_HOMEKIT, discovery_info)
|
||||
await hass.async_block_till_done()
|
||||
|
||||
return pairing
|
||||
@@ -245,7 +245,7 @@ async def device_config_changed(hass, accessories):
|
||||
}
|
||||
}
|
||||
|
||||
fire_service_discovered(hass, SERVICE_HOMEKIT, discovery_info)
|
||||
async_fire_service_discovered(hass, SERVICE_HOMEKIT, discovery_info)
|
||||
|
||||
# Wait for services to reconfigure
|
||||
await hass.async_block_till_done()
|
||||
|
||||
Reference in New Issue
Block a user