From fdf7a4d8c899f85297aff84a480559fccef814b6 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 15 May 2024 14:24:13 -0700 Subject: [PATCH] fix - test_lowest_latency_routing_first_pick --- litellm/tests/test_lowest_latency_routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_lowest_latency_routing.py b/litellm/tests/test_lowest_latency_routing.py index 4da879208..3d79e5c8f 100644 --- a/litellm/tests/test_lowest_latency_routing.py +++ b/litellm/tests/test_lowest_latency_routing.py @@ -705,7 +705,7 @@ async def test_lowest_latency_routing_first_pick(): ) # type: ignore deployments = {} - for _ in range(5): + for _ in range(10): response = await router.acompletion( model="azure-model", messages=[{"role": "user", "content": "hello"}] )