diff --git a/homeassistant/components/light/group.py b/homeassistant/components/light/group.py index 15e874db8f4..768754ca1af 100644 --- a/homeassistant/components/light/group.py +++ b/homeassistant/components/light/group.py @@ -45,7 +45,7 @@ async def async_setup_platform(hass: HomeAssistantType, config: ConfigType, async_add_devices, discovery_info=None) -> None: """Initialize light.group platform.""" async_add_devices([GroupLight(config.get(CONF_NAME), - config[CONF_ENTITIES])]) + config[CONF_ENTITIES])], True) class GroupLight(light.Light): diff --git a/tests/components/light/test_group.py b/tests/components/light/test_group.py index c97a5ae9efe..ac19f407066 100644 --- a/tests/components/light/test_group.py +++ b/tests/components/light/test_group.py @@ -2,7 +2,6 @@ from unittest.mock import MagicMock import asynctest -import pytest from homeassistant.components import light from homeassistant.components.light import group @@ -317,7 +316,6 @@ async def test_supported_features(hass): assert state.attributes['supported_features'] == 41 -@pytest.mark.skip async def test_service_calls(hass): """Test service calls.""" await async_setup_component(hass, 'light', {'light': [