Skip to content

Commit c493c7d

Browse files
authored
Bump intents and fix tests (home-assistant#152893)
1 parent fdacead commit c493c7d

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

homeassistant/components/conversation/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"documentation": "https://www.home-assistant.io/integrations/conversation",
77
"integration_type": "entity",
88
"quality_scale": "internal",
9-
"requirements": ["hassil==3.2.0", "home-assistant-intents==2025.9.3"]
9+
"requirements": ["hassil==3.2.0", "home-assistant-intents==2025.9.24"]
1010
}

homeassistant/package_constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ hass-nabucasa==1.1.1
4040
hassil==3.2.0
4141
home-assistant-bluetooth==1.13.1
4242
home-assistant-frontend==20250903.5
43-
home-assistant-intents==2025.9.3
43+
home-assistant-intents==2025.9.24
4444
httpx==0.28.1
4545
ifaddr==0.2.0
4646
Jinja2==3.1.6

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

script/hassfest/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/components/conversation/test_default_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2542,7 +2542,7 @@ async def test_non_default_response(hass: HomeAssistant, init_components) -> Non
25422542
)
25432543
)
25442544
assert len(calls) == 1
2545-
assert result.response.speech["plain"]["speech"] == "Opened"
2545+
assert result.response.speech["plain"]["speech"] == "Opening"
25462546

25472547

25482548
async def test_turn_on_area(

tests/components/conversation/test_default_agent_intents.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async def test_cover_set_position(
9090

9191
response = result.response
9292
assert response.response_type == intent.IntentResponseType.ACTION_DONE
93-
assert response.speech["plain"]["speech"] == "Opened"
93+
assert response.speech["plain"]["speech"] == "Opening"
9494
assert len(calls) == 1
9595
call = calls[0]
9696
assert call.data == {"entity_id": entity_id}
@@ -104,7 +104,7 @@ async def test_cover_set_position(
104104

105105
response = result.response
106106
assert response.response_type == intent.IntentResponseType.ACTION_DONE
107-
assert response.speech["plain"]["speech"] == "Closed"
107+
assert response.speech["plain"]["speech"] == "Closing"
108108
assert len(calls) == 1
109109
call = calls[0]
110110
assert call.data == {"entity_id": entity_id}
@@ -146,7 +146,7 @@ async def test_cover_device_class(
146146

147147
response = result.response
148148
assert response.response_type == intent.IntentResponseType.ACTION_DONE
149-
assert response.speech["plain"]["speech"] == "Opened the garage"
149+
assert response.speech["plain"]["speech"] == "Opening the garage"
150150
assert len(calls) == 1
151151
call = calls[0]
152152
assert call.data == {"entity_id": entity_id}
@@ -170,7 +170,7 @@ async def test_valve_intents(
170170

171171
response = result.response
172172
assert response.response_type == intent.IntentResponseType.ACTION_DONE
173-
assert response.speech["plain"]["speech"] == "Opened"
173+
assert response.speech["plain"]["speech"] == "Opening"
174174
assert len(calls) == 1
175175
call = calls[0]
176176
assert call.data == {"entity_id": entity_id}
@@ -184,7 +184,7 @@ async def test_valve_intents(
184184

185185
response = result.response
186186
assert response.response_type == intent.IntentResponseType.ACTION_DONE
187-
assert response.speech["plain"]["speech"] == "Closed"
187+
assert response.speech["plain"]["speech"] == "Closing"
188188
assert len(calls) == 1
189189
call = calls[0]
190190
assert call.data == {"entity_id": entity_id}

0 commit comments

Comments
 (0)