mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-02 08:44:44 +00:00
Remove print statements in unit tests
This commit is contained in:
parent
cf87262e9c
commit
7076e661b5
2 changed files with 0 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -422,7 +422,6 @@ class TestInference:
|
|||
**common_params,
|
||||
)
|
||||
]
|
||||
|
||||
assert len(response) > 0
|
||||
assert all(
|
||||
isinstance(chunk, ChatCompletionResponseStreamChunk) for chunk in response
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue