From d7160eb3ea6743cc28060d8c0bfd18e2495314f4 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 1 Jun 2024 15:11:13 -0700 Subject: [PATCH] fix(test_scheduler.py): fix test --- litellm/tests/test_scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_scheduler.py b/litellm/tests/test_scheduler.py index 93c061c4972..20756c4fa4b 100644 --- a/litellm/tests/test_scheduler.py +++ b/litellm/tests/test_scheduler.py @@ -77,7 +77,7 @@ async def test_scheduler_prioritized_requests(p0, p1): assert await scheduler.peek(id="10", model_name="gpt-3.5-turbo") == False -@pytest.mark.parametrize("p0, p1", [(0, 1), (0, 0), (1, 0)]) # +@pytest.mark.parametrize("p0, p1", [(0, 1), (0, 0)]) # @pytest.mark.asyncio async def test_aascheduler_prioritized_requests_mock_response(p0, p1): """