From 7a8e398f099ef423f892ded6d0b422033d340023 Mon Sep 17 00:00:00 2001 From: ilya-kolchinsky Date: Thu, 8 May 2025 11:08:41 +0200 Subject: [PATCH] Removed an accidentally committed debug print. --- tests/unit/providers/inference/test_remote_vllm.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unit/providers/inference/test_remote_vllm.py b/tests/unit/providers/inference/test_remote_vllm.py index ecf2f1b6e..8eeccfd56 100644 --- a/tests/unit/providers/inference/test_remote_vllm.py +++ b/tests/unit/providers/inference/test_remote_vllm.py @@ -340,7 +340,6 @@ async def test_process_vllm_chat_completion_stream_response_no_finish_reason(): ), ] for chunk in mock_chunks: - print(f"Test chunk:\n{chunk}") yield chunk chunks = [chunk async for chunk in _process_vllm_chat_completion_stream_response(mock_stream())]