File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
tests/components/plugwise Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22
33## Versions from 0.40 and up
44
5+ ## Ongoing
6+
7+ - Fix climate-test error: implement homeassistant.exceptions.ServiceValidationError
8+
59## v0.51.6
610
711- Implement fix for [ #677 ] ( https://github.com/plugwise/plugwise-beta/issues/677 )
Original file line number Diff line number Diff line change 99
1010from homeassistant .components .climate .const import HVACMode
1111from homeassistant .core import HomeAssistant
12- from homeassistant .exceptions import HomeAssistantError
12+ from homeassistant .exceptions import HomeAssistantError , ServiceValidationError
1313from homeassistant .util .dt import utcnow
1414
1515from tests .common import MockConfigEntry , async_fire_time_changed
@@ -202,7 +202,7 @@ async def test_adam_climate_entity_climate_changes(
202202 "c50f167537524366a5af7aa3942feb1e" , {"setpoint" : 25.0 }
203203 )
204204
205- with pytest .raises (ValueError ):
205+ with pytest .raises (ServiceValidationError ):
206206 await hass .services .async_call (
207207 "climate" ,
208208 "set_temperature" ,
You can’t perform that action at this time.
0 commit comments