1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Fix entity extraction from Template conditions (#40034)

This commit is contained in:
Franck Nijhof
2020-09-13 22:05:45 +02:00
committed by GitHub
parent 1f8c1f151d
commit cd26384634
2 changed files with 11 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import pytest
from homeassistant.exceptions import HomeAssistantError
from homeassistant.helpers import condition
from homeassistant.helpers.template import Template
from homeassistant.setup import async_setup_component
from homeassistant.util import dt
@@ -807,6 +808,7 @@ async def test_extract_entities():
"entity_id": ["sensor.temperature_9", "sensor.temperature_10"],
"below": 110,
},
Template("{{ is_state('light.example', 'on') }}"),
],
}
) == {
@@ -867,6 +869,7 @@ async def test_extract_devices():
},
],
},
Template("{{ is_state('light.example', 'on') }}"),
],
}
)