diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index f5e145769b..eca0cd9343 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -151,6 +151,8 @@ def test_completion_claude_3_function_call(): assert isinstance( response.choices[0].message.tool_calls[0].function.arguments, str ) + except litellm.ServiceUnavailableError as e: + pass except Exception as e: pytest.fail(f"Error occurred: {e}")