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}")