diff --git a/litellm/tests/test_text_completion.py b/litellm/tests/test_text_completion.py index abf76acde2..0b98111839 100644 --- a/litellm/tests/test_text_completion.py +++ b/litellm/tests/test_text_completion.py @@ -2833,8 +2833,9 @@ def test_completion_hf_prompt_array(): assert len(response.choices) == 2 # response_str = response["choices"][0]["text"] except Exception as e: + print(str(e)) if "is currently loading" in str(e): - pass + return pytest.fail(f"Error occurred: {e}")