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):