Skip to content

Commit b352b9e

Browse files
fix: test for setting hvac mode while device is locked.
1 parent eb0d3d5 commit b352b9e

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tests/components/fritzbox/test_climate.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,16 @@ async def test_discover_new_device(hass: HomeAssistant, fritz: Mock) -> None:
493493
assert state
494494

495495

496+
@pytest.mark.parametrize(
497+
"service_data",
498+
[
499+
{ATTR_TEMPERATURE: 23},
500+
{
501+
ATTR_HVAC_MODE: HVACMode.HEAT,
502+
ATTR_TEMPERATURE: 25,
503+
},
504+
],
505+
)
496506
async def test_set_hvac_mode_lock(
497507
hass: HomeAssistant,
498508
fritz: Mock,
@@ -508,7 +518,7 @@ async def test_set_hvac_mode_lock(
508518

509519
with pytest.raises(
510520
HomeAssistantError,
511-
match="Can't change HVAC mode while holiday or summer mode is active on the device",
521+
match="Can't change HVAC mode while Deactivate manual access for phone, app or user interface is enabled",
512522
):
513523
await hass.services.async_call(
514524
CLIMATE_DOMAIN,

0 commit comments

Comments
 (0)