test: remove debug print

This commit is contained in:
Son H. Nguyen 2025-03-19 23:41:02 +07:00
parent 3ed5df7817
commit 22b3035cb7

View file

@ -117,7 +117,6 @@ def test_completion_github_copilot_mock_response(mock_completion, mock_get_llm_p
# Verify the get_llm_provider call was made with the expected params
mock_get_llm_provider.assert_called_once()
args, kwargs = mock_get_llm_provider.call_args
print(kwargs.get("model"))
assert kwargs.get("model") is "github_copilot/gpt-4"
assert kwargs.get("custom_llm_provider") is None
assert kwargs.get("api_key") is None