From e80bba83e362ac18ac4d22da6826a509b9bfbc8b Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Wed, 22 Oct 2025 09:29:00 -0700 Subject: [PATCH] test fix --- .../test_litellm_completion_responses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_litellm/responses/litellm_completion_transformation/test_litellm_completion_responses.py b/tests/test_litellm/responses/litellm_completion_transformation/test_litellm_completion_responses.py index d8fec45757d..a0fd1f78d8c 100644 --- a/tests/test_litellm/responses/litellm_completion_transformation/test_litellm_completion_responses.py +++ b/tests/test_litellm/responses/litellm_completion_transformation/test_litellm_completion_responses.py @@ -269,7 +269,7 @@ class TestLiteLLMCompletionResponsesConfig: # Only assert ID format if an ID is present if hasattr(reasoning_item, 'id') and reasoning_item.id: assert reasoning_item.id.startswith("rs_"), f"Expected ID to start with 'rs_', got: {reasoning_item.id}" - assert reasoning_item.status == "stop" + assert reasoning_item.status == "completed" assert reasoning_item.role == "assistant" assert len(reasoning_item.content) == 1 assert reasoning_item.content[0].type == "output_text"