fix: rename test method

This commit is contained in:
Chesars 2026-03-22 01:37:59 -03:00
parent 11e4ec00f7
commit 7091f87a7a

View file

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