Skip to content

Commit

Permalink
Update test_climate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PeteRager committed Jun 5, 2024
1 parent 1e81a30 commit fc33dbb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/test_climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -1241,10 +1241,6 @@ async def test_climate_turn_aux_heat_on(hass, manager_mz: Manager, caplog):
assert setHVACMode.call_count == 1
assert setHVACMode.await_args[0][0] == LENNOX_HVAC_EMERGENCY_HEAT
assert "turn_aux_heat_on is deprecated and will be removed in version 2024.10" in caplog.text
issue_registry = ir.async_get(hass)
issue = issue_registry.async_get_issue(LENNOX_DOMAIN, "turn_aux_heat_on")
assert issue.breaks_in_ha_version == "2024.10.0"
assert issue.translation_key == "deprecated_aux_heat"

await conf_test_exception_handling(zone, "setHVACMode", c, c.async_turn_aux_heat_on)

Expand Down Expand Up @@ -1278,10 +1274,6 @@ async def test_climate_turn_aux_heat_off(hass, manager_mz: Manager, caplog):
assert setHVACMode.call_count == 1
assert setHVACMode.await_args[0][0] == LENNOX_HVAC_HEAT
assert "turn_aux_heat_off is deprecated and will be removed in version 2024.10" in caplog.text
issue_registry = ir.async_get(hass)
issue = issue_registry.async_get_issue(LENNOX_DOMAIN, "turn_aux_heat_off")
assert issue.breaks_in_ha_version == "2024.10.0"
assert issue.translation_key == "deprecated_aux_heat"

await conf_test_exception_handling(zone, "setHVACMode", c, c.async_turn_aux_heat_off)

Expand Down

0 comments on commit fc33dbb

Please sign in to comment.