From 6d6ab30ed791fdd1ad795a1929d4371e8da364fd Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 21 Aug 2024 21:10:47 -0700 Subject: [PATCH] test: test_function_calling.py --- litellm/tests/test_function_calling.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/tests/test_function_calling.py b/litellm/tests/test_function_calling.py index a42a2530053..0895dfb1a88 100644 --- a/litellm/tests/test_function_calling.py +++ b/litellm/tests/test_function_calling.py @@ -141,6 +141,8 @@ def test_parallel_function_call(model): drop_params=True, ) # get a new response from the model where it can see the function response print("second response\n", second_response) + except litellm.RateLimitError: + pass except Exception as e: pytest.fail(f"Error occurred: {e}")