remove config sections from hass.config.components (#22370)
* remove config sections from hass.config.components * fix testspull/22397/head
parent
42c27e5b72
commit
0c4380a78d
|
@ -46,7 +46,6 @@ async def async_setup(hass, config):
|
|||
if success:
|
||||
key = '{}.{}'.format(DOMAIN, panel_name)
|
||||
hass.bus.async_fire(EVENT_COMPONENT_LOADED, {ATTR_COMPONENT: key})
|
||||
hass.config.components.add(key)
|
||||
|
||||
@callback
|
||||
def component_loaded(event):
|
||||
|
|
|
@ -29,7 +29,6 @@ def test_load_on_demand_already_loaded(hass, aiohttp_client):
|
|||
yield from async_setup_component(hass, 'config', {})
|
||||
|
||||
yield from hass.async_block_till_done()
|
||||
assert 'config.zwave' in hass.config.components
|
||||
assert stp.called
|
||||
|
||||
|
||||
|
@ -47,5 +46,4 @@ def test_load_on_demand_on_load(hass, aiohttp_client):
|
|||
hass.bus.async_fire(EVENT_COMPONENT_LOADED, {ATTR_COMPONENT: 'zwave'})
|
||||
yield from hass.async_block_till_done()
|
||||
|
||||
assert 'config.zwave' in hass.config.components
|
||||
assert stp.called
|
||||
|
|
Loading…
Reference in New Issue