From 5bd10e303aa1aae33f160f57db06f224a68ef51a Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 19 Jan 2024 19:43:41 -0800 Subject: [PATCH] (test) fix incorrect test lol --- litellm/tests/test_completion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index 940db3177e..4215802530 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -1384,10 +1384,10 @@ def test_completion_sagemaker(): # Add any assertions here to check the response print(response) cost = completion_cost(completion_response=response) + print("calculated cost", cost) assert ( cost > 0.0 and cost < 1.0 ) # should never be > $1 for a single completion call - raise Exception("it worked!") except Exception as e: pytest.fail(f"Error occurred: {e}")