diff --git a/litellm/tests/test_add_function_to_prompt.py b/litellm/tests/test_add_function_to_prompt.py index 33d2ac2a976..a5ec5306298 100644 --- a/litellm/tests/test_add_function_to_prompt.py +++ b/litellm/tests/test_add_function_to_prompt.py @@ -37,6 +37,7 @@ def test_function_call_non_openai_model(): response = litellm.completion(model=model, messages=messages, functions=functions) pytest.fail(f'An error occurred') except Exception as e: + print(e) pass test_function_call_non_openai_model()