1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-15 07:36:16 +00:00

Fix some reversed asserts in sensor group tests (#160905)

This commit is contained in:
Erik Montnemery
2026-01-14 09:43:26 +01:00
committed by GitHub
parent 2ee5410a6c
commit 6d6324dae5

View File

@@ -215,14 +215,14 @@ async def test_not_enough_sensor_value(hass: HomeAssistant) -> None:
state = hass.states.get("sensor.test_max")
assert state.state not in [STATE_UNAVAILABLE, STATE_UNKNOWN]
assert entity_ids[1] == state.attributes.get("max_entity_id")
assert state.attributes.get("max_entity_id") == entity_ids[1]
hass.states.async_set(entity_ids[2], STATE_UNKNOWN)
await hass.async_block_till_done()
state = hass.states.get("sensor.test_max")
assert state.state not in [STATE_UNAVAILABLE, STATE_UNKNOWN]
assert entity_ids[1] == state.attributes.get("max_entity_id")
assert state.attributes.get("max_entity_id") == entity_ids[1]
hass.states.async_set(entity_ids[1], STATE_UNAVAILABLE)
await hass.async_block_till_done()
@@ -857,8 +857,8 @@ async def test_last_sensor(hass: HomeAssistant) -> None:
hass.states.async_set(entity_id, str(value))
await hass.async_block_till_done()
state = hass.states.get("sensor.test_last")
assert str(float(value)) == state.state
assert entity_id == state.attributes.get("last_entity_id")
assert state.state == str(float(value))
assert state.attributes.get("last_entity_id") == entity_id
async def test_sensors_attributes_added_when_entity_info_available(