Fix - Remove unneeded assert in teslemetry test (#119219)
Remove unneded assert in teslemetry testpull/119211/head^2
parent
7065c0993d
commit
4ca38f227a
|
@ -194,7 +194,7 @@ async def test_climate(
|
|||
with pytest.raises(
|
||||
ServiceValidationError,
|
||||
match="Cabin overheat protection does not support that temperature",
|
||||
) as error:
|
||||
):
|
||||
# Invalid Temp
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN,
|
||||
|
@ -202,7 +202,6 @@ async def test_climate(
|
|||
{ATTR_ENTITY_ID: [entity_id], ATTR_TEMPERATURE: 25},
|
||||
blocking=True,
|
||||
)
|
||||
assert error
|
||||
|
||||
|
||||
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
||||
|
|
Loading…
Reference in New Issue