From 50ec4a1a4f7f9ef7125cb2f1219ede005873b236 Mon Sep 17 00:00:00 2001 From: ccurme Date: Mon, 24 Mar 2025 13:36:36 -0400 Subject: [PATCH] openai[patch]: attempt to make test less flaky (#30463) --- .../tests/integration_tests/chat_models/test_responses_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/partners/openai/tests/integration_tests/chat_models/test_responses_api.py b/libs/partners/openai/tests/integration_tests/chat_models/test_responses_api.py index d827c3c8469..8824560eae2 100644 --- a/libs/partners/openai/tests/integration_tests/chat_models/test_responses_api.py +++ b/libs/partners/openai/tests/integration_tests/chat_models/test_responses_api.py @@ -149,7 +149,7 @@ def test_function_calling() -> None: assert full.tool_calls[0]["name"] == "multiply" assert set(full.tool_calls[0]["args"]) == {"x", "y"} - response = bound_llm.invoke("whats some good news from today") + response = bound_llm.invoke("What was a positive news story from today?") _check_response(response)