Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow picking a pipeline for voip devices #91524

Merged
merged 4 commits into from
Apr 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test
  • Loading branch information
balloob committed Apr 17, 2023
commit 349db594c1611fe33dc27c851b5ef2145e978953
6 changes: 5 additions & 1 deletion tests/components/assist_pipeline/test_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ async def test_select_entity_changing_pipelines(
state = hass.states.get("select.assist_pipeline_test_pipeline")
assert state is not None
assert state.state == "preferred"
assert state.attributes["options"] == ["preferred", pipeline_1.name]
assert state.attributes["options"] == [
"preferred",
pipeline_1.name,
pipeline_2.name,
]

# Change select to new pipeline
await hass.services.async_call(
Expand Down