diff --git a/libs/partners/ollama/tests/integration_tests/test_gpt_oss_tools.py b/libs/partners/ollama/tests/integration_tests/test_gpt_oss_tools.py index dfcfbc2af31..164beb7e903 100644 --- a/libs/partners/ollama/tests/integration_tests/test_gpt_oss_tools.py +++ b/libs/partners/ollama/tests/integration_tests/test_gpt_oss_tools.py @@ -161,7 +161,7 @@ class TestGptOssToolCallingIntegration: HumanMessage(content="Hi, I need help with two things."), AIMessage(content="Hello! I'd be happy to help. What do you need?"), HumanMessage( - content="First, what's the weather in Paris? Second, calculate 15 * 28. " + content="First, what's the weather in Paris? Second, calculate 15*28. " "Please use the available tools for both tasks." ), ] @@ -360,3 +360,4 @@ class TestGptOssErrorHandling: # Should have no tool calls assert not response.tool_calls or len(response.tool_calls) == 0 +