remove config sections from hass.config.components (#22370)

* remove config sections from hass.config.components

* fix tests
pull/22397/head
uchagani 2019-03-26 01:36:39 -04:00 committed by Paulus Schoutsen
parent 42c27e5b72
commit 0c4380a78d
2 changed files with 0 additions and 3 deletions

View File

@ -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):

View File

@ -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