Update test_init.py

pull/95985/head
Bram Kragten 2023-07-06 12:17:36 +02:00
parent 2ed3693236
commit 8e113e54db
No known key found for this signature in database
GPG Key ID: FBE2DFDB363EF55B
1 changed files with 7 additions and 4 deletions

View File

@ -26,7 +26,7 @@ from homeassistant.core import (
callback, callback,
split_entity_id, split_entity_id,
) )
from homeassistant.exceptions import HomeAssistantError, ServiceNotFound from homeassistant.exceptions import ServiceNotFound
from homeassistant.helpers import entity_registry as er, template from homeassistant.helpers import entity_registry as er, template
from homeassistant.helpers.event import async_track_state_change from homeassistant.helpers.event import async_track_state_change
from homeassistant.helpers.script import ( from homeassistant.helpers.script import (
@ -1625,7 +1625,7 @@ async def test_responses(hass: HomeAssistant, response: Any) -> None:
) )
async def test_responses_error(hass: HomeAssistant) -> None: async def test_responses_no_response(hass: HomeAssistant) -> None:
"""Test response variable not set.""" """Test response variable not set."""
mock_restore_cache(hass, ()) mock_restore_cache(hass, ())
assert await async_setup_component( assert await async_setup_component(
@ -1645,10 +1645,13 @@ async def test_responses_error(hass: HomeAssistant) -> None:
}, },
) )
with pytest.raises(HomeAssistantError): # Validate we can call it with return_response
assert await hass.services.async_call( assert (
await hass.services.async_call(
DOMAIN, "test", {"greeting": "world"}, blocking=True, return_response=True DOMAIN, "test", {"greeting": "world"}, blocking=True, return_response=True
) )
== {}
)
# Validate we can also call it without return_response # Validate we can also call it without return_response
assert ( assert (
await hass.services.async_call( await hass.services.async_call(