From d66c7bf38ba28b34755dc43e90caaf0a9291f400 Mon Sep 17 00:00:00 2001 From: Artur Pragacz <49985303+arturpragacz@users.noreply.github.com> Date: Fri, 23 Jan 2026 21:24:43 +0100 Subject: [PATCH] Fix LLM test to use string values for device attributes (#161490) --- tests/helpers/test_llm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/helpers/test_llm.py b/tests/helpers/test_llm.py index f57e7ae1eba..e2b30bf8eb0 100644 --- a/tests/helpers/test_llm.py +++ b/tests/helpers/test_llm.py @@ -576,9 +576,9 @@ async def test_assist_api_prompt( device_registry.async_get_or_create( config_entry_id=entry.entry_id, connections={("test", "9876-integer-values")}, - name=1, - manufacturer=2, - model=3, + name="1", + manufacturer="2", + model="3", suggested_area="Test Area 2", ) )