From 5fd4c374274cae0ecabec045cbae21d79d388241 Mon Sep 17 00:00:00 2001 From: "David F. Mulcahey" Date: Sat, 4 Dec 2021 13:50:55 -0500 Subject: [PATCH] Fix missing test assertion in ZHA siren test (#61009) --- tests/components/zha/test_siren.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/components/zha/test_siren.py b/tests/components/zha/test_siren.py index 9a10f55f25a..d9c173fd932 100644 --- a/tests/components/zha/test_siren.py +++ b/tests/components/zha/test_siren.py @@ -137,3 +137,5 @@ async def test_siren(hass, siren): now = dt_util.utcnow() + timedelta(seconds=15) async_fire_time_changed(hass, now) await hass.async_block_till_done() + + assert hass.states.get(entity_id).state == STATE_OFF