From 605619a5ee9bae8fd7f547eca7e065a5f5f37562 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Tue, 3 Jan 2023 11:11:20 +0100 Subject: [PATCH] Update stale strings in repairs tests (#85046) --- tests/components/repairs/test_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/repairs/test_init.py b/tests/components/repairs/test_init.py index 513eb4071bc..6d4ec300338 100644 --- a/tests/components/repairs/test_init.py +++ b/tests/components/repairs/test_init.py @@ -459,7 +459,7 @@ async def test_non_compliant_platform(hass: HomeAssistant, hass_ws_client) -> No """Test non-compliant platforms are not registered.""" hass.config.components.add("fake_integration") - hass.config.components.add("integration_without_diagnostics") + hass.config.components.add("integration_without_repairs") mock_platform( hass, "fake_integration.repairs", @@ -467,7 +467,7 @@ async def test_non_compliant_platform(hass: HomeAssistant, hass_ws_client) -> No ) mock_platform( hass, - "integration_without_diagnostics.repairs", + "integration_without_repairs.repairs", Mock(spec=[]), ) assert await async_setup_component(hass, DOMAIN, {})