mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 18:28:14 +02:00
Add transition support to scenes, cleanup blocking parameter (#34434)
This commit is contained in:
@ -29,7 +29,6 @@ async def test_reproducing_states(hass, caplog):
|
||||
State("input_datetime.entity_time", "01:20:00"),
|
||||
State("input_datetime.entity_date", "2010-10-10"),
|
||||
],
|
||||
blocking=True,
|
||||
)
|
||||
|
||||
assert len(datetime_calls) == 0
|
||||
@ -42,7 +41,6 @@ async def test_reproducing_states(hass, caplog):
|
||||
State("input_datetime.entity_datetime", "not:valid:time"),
|
||||
State("input_datetime.entity_datetime", "1234-56-78 90:12:34"),
|
||||
],
|
||||
blocking=True,
|
||||
)
|
||||
|
||||
assert "not_supported" in caplog.text
|
||||
@ -60,7 +58,6 @@ async def test_reproducing_states(hass, caplog):
|
||||
# Should not raise
|
||||
State("input_datetime.non_existing", "2010-10-10 01:20:00"),
|
||||
],
|
||||
blocking=True,
|
||||
)
|
||||
|
||||
valid_calls = [
|
||||
|
Reference in New Issue
Block a user