diff --git a/tests/components/default_config/test_init.py b/tests/components/default_config/test_init.py index 9bff213bb74..8835e943076 100644 --- a/tests/components/default_config/test_init.py +++ b/tests/components/default_config/test_init.py @@ -5,6 +5,8 @@ from unittest.mock import patch import pytest from homeassistant import bootstrap +from homeassistant.components.default_config import DOMAIN +from homeassistant.components.homeassistant import DOMAIN as HOMEASSISTANT_DOMAIN from homeassistant.core import HomeAssistant from homeassistant.helpers import recorder as recorder_helper from homeassistant.setup import async_setup_component @@ -34,7 +36,7 @@ async def test_setup(hass: HomeAssistant) -> None: recorder_helper.async_initialize_recorder(hass) # default_config needs the homeassistant integration, assert it will be # automatically setup by bootstrap and set it up manually for this test - assert "homeassistant" in bootstrap.CORE_INTEGRATIONS - assert await async_setup_component(hass, "homeassistant", {"foo": "bar"}) + assert HOMEASSISTANT_DOMAIN in bootstrap.CORE_INTEGRATIONS + assert await async_setup_component(hass, HOMEASSISTANT_DOMAIN, {"foo": "bar"}) - assert await async_setup_component(hass, "default_config", {"foo": "bar"}) + assert await async_setup_component(hass, DOMAIN, {"foo": "bar"})