Remove print statements in unit tests

This commit is contained in:
Aidan Do 2024-12-15 12:05:52 +11:00
parent cf87262e9c
commit 7076e661b5
2 changed files with 0 additions and 2 deletions

View file

@ -468,7 +468,6 @@ class TestConvertStreamChatCompletionResponse:
iter = converted.__aiter__()
chunk = await iter.__anext__()
print(chunk)
assert chunk.event.event_type == ChatCompletionResponseEventType.start
assert chunk.event.delta.content == ToolCall(
call_id="tool_call_id",

View file

@ -422,7 +422,6 @@ class TestInference:
**common_params,
)
]
assert len(response) > 0
assert all(
isinstance(chunk, ChatCompletionResponseStreamChunk) for chunk in response