From 7091f87a7aef28303721ab336b5b23993e8dcd74 Mon Sep 17 00:00:00 2001 From: Chesars Date: Sun, 22 Mar 2026 01:37:59 -0300 Subject: [PATCH] fix: rename test method --- .../test_batch_embed_content_transformation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_litellm/llms/vertex_ai/gemini_embeddings/test_batch_embed_content_transformation.py b/tests/test_litellm/llms/vertex_ai/gemini_embeddings/test_batch_embed_content_transformation.py index ec27824e2ba..bb4e6c67e9e 100644 --- a/tests/test_litellm/llms/vertex_ai/gemini_embeddings/test_batch_embed_content_transformation.py +++ b/tests/test_litellm/llms/vertex_ai/gemini_embeddings/test_batch_embed_content_transformation.py @@ -44,8 +44,8 @@ class TestIsMultimodalInput: def test_mixed_text_and_image(self): assert _is_multimodal_input(["hello", IMAGE_DATA_URI]) is True - def test_nested_text_only_is_not_multimodal(self): - """Nested list with only text is not multimodal.""" + def test_nested_text_is_not_multimodal(self): + """Nested list with text is not multimodal.""" assert _is_multimodal_input([["text_a", "text_b"]]) is False def test_nested_list_with_image_is_multimodal(self):