Skip to content

Commit

Permalink
Update the Selected Pipeline entity name (home-assistant#126845)
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob authored Sep 26, 2024
1 parent ae102f1 commit 471c68f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/assist_pipeline/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"select": {
"pipeline": {
"name": "Assist pipeline",
"name": "Assistant",
"state": {
"preferred": "Preferred"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/components/esphome/test_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion tests/components/voip/test_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 471c68f

Please sign in to comment.