From a3257fd5d3f017a06486719079ad550e9508ffb0 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 27 Apr 2024 18:39:42 -0700 Subject: [PATCH] test(test_router_init.py): fix test --- litellm/tests/test_router_init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_router_init.py b/litellm/tests/test_router_init.py index 13f7bd190c3..f0f0cc541ca 100644 --- a/litellm/tests/test_router_init.py +++ b/litellm/tests/test_router_init.py @@ -203,7 +203,7 @@ def test_timeouts_router(): }, }, ] - router = Router(model_list=model_list) + router = Router(model_list=model_list, num_retries=0) print("PASSED !")