mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-19 00:01:29 +00:00
fix: rename test method
This commit is contained in:
parent
11e4ec00f7
commit
7091f87a7a
1 changed files with 2 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue