Update the Selected Pipeline entity name (#126845)

This commit is contained in:
Paulus Schoutsen 2024-09-26 14:38:51 -04:00 committed by Franck Nijhof
parent 9a7254e4ee
commit b60e6082f7
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
},
"select": {
"pipeline": {
"name": "Assist pipeline",
"name": "Assistant",
"state": {
"preferred": "Preferred"
}

View file

@ -19,7 +19,7 @@ async def test_pipeline_selector(
) -> None:
"""Test assist pipeline selector."""
state = hass.states.get("select.test_assist_pipeline")
state = hass.states.get("select.test_assistant")
assert state is not None
assert state.state == "preferred"

View file

@ -15,7 +15,7 @@ async def test_pipeline_select(
Functionality is tested in assist_pipeline/test_select.py.
This test is only to ensure it is set up.
"""
state = hass.states.get("select.192_168_1_210_assist_pipeline")
state = hass.states.get("select.192_168_1_210_assistant")
assert state is not None
assert state.state == "preferred"