From 22d3e492f931ca82c887a77fbfed85de2014fb18 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 16 Sep 2025 19:17:44 -0700 Subject: [PATCH] fix(test_utils.py): fix test --- tests/test_litellm/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_litellm/test_utils.py b/tests/test_litellm/test_utils.py index e98fc8bddb4..fc7088f4b62 100644 --- a/tests/test_litellm/test_utils.py +++ b/tests/test_litellm/test_utils.py @@ -678,8 +678,8 @@ def test_aaamodel_prices_and_context_window_json_is_valid(): }, } - # prod_json = "./model_prices_and_context_window.json" - prod_json = "../../model_prices_and_context_window.json" + prod_json = "./model_prices_and_context_window.json" + # prod_json = "../../model_prices_and_context_window.json" with open(prod_json, "r") as model_prices_file: actual_json = json.load(model_prices_file) assert isinstance(actual_json, dict)