From ef2f6ef6a20688a68cb0839d5645ee3fe90d0ab4 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 3 Apr 2024 21:24:21 -0700 Subject: [PATCH] test(test_acooldowns_router.py): fix tpm --- litellm/tests/test_acooldowns_router.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/tests/test_acooldowns_router.py b/litellm/tests/test_acooldowns_router.py index acd884c82..28573d5be 100644 --- a/litellm/tests/test_acooldowns_router.py +++ b/litellm/tests/test_acooldowns_router.py @@ -146,7 +146,7 @@ def test_cooldown_same_model_name(): "api_key": os.getenv("AZURE_API_KEY"), "api_version": os.getenv("AZURE_API_VERSION"), "api_base": os.getenv("AZURE_API_BASE"), - "tpm": 0.000001, + "tpm": 1, }, }, ] @@ -181,4 +181,4 @@ def test_cooldown_same_model_name(): pytest.fail(f"Got unexpected exception on router! - {e}") -test_cooldown_same_model_name() +# test_cooldown_same_model_name()