From a6122ac293c63dedd5657aaf6712b3e38607da72 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 30 Jul 2024 19:56:46 -0700 Subject: [PATCH] fix test proxy routes check --- litellm/tests/test_proxy_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_proxy_routes.py b/litellm/tests/test_proxy_routes.py index 6f5774d3e73..677eb02d3aa 100644 --- a/litellm/tests/test_proxy_routes.py +++ b/litellm/tests/test_proxy_routes.py @@ -69,7 +69,7 @@ def test_routes_on_litellm_proxy(): ("/v1/threads/thread_49EIN5QF32s4mH20M7GFKdlZ", True), ("/threads/thread_49EIN5QF32s4mH20M7GFKdlZ/messages", True), ("/v1/threads/thread_49EIN5QF32s4mH20M7GFKdlZ/runs", True), - ("/v1/batches123456", True), + ("/v1/batches/123456", True), # Test non-OpenAI routes ("/some/random/route", False), ("/v2/chat/completions", False),