From a53ef4b574f292a2b5262aada961307f8307e253 Mon Sep 17 00:00:00 2001 From: Chesars Date: Mon, 23 Mar 2026 11:38:07 -0300 Subject: [PATCH] fix: rename test to match actual API parameter name (dimension) --- .../test_vertex_ai_multimodal_embedding_transformation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_litellm/llms/vertex_ai/multimodal_embeddings/test_vertex_ai_multimodal_embedding_transformation.py b/tests/test_litellm/llms/vertex_ai/multimodal_embeddings/test_vertex_ai_multimodal_embedding_transformation.py index 19024104fe7..5bb49a4fb78 100644 --- a/tests/test_litellm/llms/vertex_ai/multimodal_embeddings/test_vertex_ai_multimodal_embedding_transformation.py +++ b/tests/test_litellm/llms/vertex_ai/multimodal_embeddings/test_vertex_ai_multimodal_embedding_transformation.py @@ -136,8 +136,8 @@ class TestVertexMultimodalEmbedding: result = self.config.process_openai_embedding_input(input_data) assert result == expected_output, f"Expected {expected_output}, but got {result}" - def test_dimensions_parameter_forwarded_as_output_dimensionality(self): - """Test that the dimensions parameter is forwarded as outputDimensionality + def test_dimensions_parameter_forwarded_as_dimension(self): + """Test that the dimensions parameter is forwarded as dimension in the request body parameters field. Fixes: https://github.com/BerriAI/litellm/issues/24392