Skip to content

Commit b114eb1

Browse files
authored
Fix flaky OpenRouter test (#2585)
1 parent 0d95514 commit b114eb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/openrouter/tests/test_openrouter_chat_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ def echo_function(text: str) -> str:
663663

664664
# Pass mixed list: echo_tool (individual) and toolset (weather + time) at runtime
665665
# This tests that both individual tools and toolsets can be combined
666-
messages = [ChatMessage.from_user("Echo this: Hello World")]
666+
messages = [ChatMessage.from_user("Echo this via tool: Hello World")]
667667
results = component.run(messages, tools=[echo_tool, toolset])
668668

669669
assert len(results["replies"]) == 1

0 commit comments

Comments
 (0)