From ecd96fb7ef79ebf6f81ef5c84e7aa3e102c88876 Mon Sep 17 00:00:00 2001 From: lkapadiya-DO Date: Fri, 15 May 2026 13:53:20 -0700 Subject: [PATCH] removed redundunt test functions --- tests/test_litellm/test_utils.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tests/test_litellm/test_utils.py b/tests/test_litellm/test_utils.py index 209831783b8..577d540b15b 100644 --- a/tests/test_litellm/test_utils.py +++ b/tests/test_litellm/test_utils.py @@ -4139,18 +4139,3 @@ class TestValidateAndFixThinkingParam: validate_and_fix_thinking_param(thinking=thinking) assert "budgetTokens" in thinking assert "budget_tokens" not in thinking - - -def test_normalize_array_of_strings_in_content(): - from litellm.utils import validate_and_fix_openai_messages - - messages = [ - { - "role": "user", - "content": ["what is the capital of France?"], - } - ] - result = validate_and_fix_openai_messages(messages=messages) - assert result[0]["content"] == [ - {"type": "text", "text": "what is the capital of France?"}, - ] \ No newline at end of file