From 2eee1cdd02c457010288fc1978398aa64a2b2988 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 12 Feb 2025 22:44:41 -0800 Subject: [PATCH] test: fix test --- tests/local_testing/test_router_fallbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/local_testing/test_router_fallbacks.py b/tests/local_testing/test_router_fallbacks.py index c81a3f05ab..ee762e29b2 100644 --- a/tests/local_testing/test_router_fallbacks.py +++ b/tests/local_testing/test_router_fallbacks.py @@ -1014,7 +1014,7 @@ async def test_service_unavailable_fallbacks(sync_mode): messages=[{"role": "user", "content": "Hey, how's it going?"}], ) - assert response.model == "gpt-35-turbo" + assert response.model == "gpt-3.5-turbo-0125" @pytest.mark.parametrize("sync_mode", [True, False])