From c6344152730ec83c19a9d363adeb02630eab952b Mon Sep 17 00:00:00 2001 From: Yannick Schnider Date: Fri, 3 Oct 2025 11:11:49 +0200 Subject: [PATCH] [test utils] correct wrong typing (#26159) Signed-off-by: Yannick Schnider Signed-off-by: yewentao256 --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 66106d1bf7792..c61a8f8dd539a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -756,7 +756,7 @@ class VllmRunner: def get_inputs( self, - prompts: Union[list[str], list[torch.Tensor], list[int]], + prompts: Union[list[str], list[torch.Tensor], list[list[int]]], images: Optional[PromptImageInput] = None, videos: Optional[PromptVideoInput] = None, audios: Optional[PromptAudioInput] = None,