diff --git a/tests/litellm_utils_tests/test_supports_tool_choice.py b/tests/litellm_utils_tests/test_supports_tool_choice.py index a68aea4f5a..cfa190f74b 100644 --- a/tests/litellm_utils_tests/test_supports_tool_choice.py +++ b/tests/litellm_utils_tests/test_supports_tool_choice.py @@ -119,7 +119,7 @@ async def test_supports_tool_choice(): litellm._turn_on_debug() local_path = "../../model_prices_and_context_window.json" prod_path = "./model_prices_and_context_window.json" - with open(local_path, "r") as f: + with open(prod_path, "r") as f: model_prices = json.load(f) litellm.model_cost = model_prices config_manager = ProviderConfigManager()