test(test_completion_cost.py): cleanup test

This commit is contained in:
Krrish Dholakia 2024-06-04 16:57:25 -07:00
parent 52a2f5150c
commit 15b226ca4f

View file

@ -472,7 +472,7 @@ def test_replicate_llama3_cost_tracking():
assert cost == expected_cost
@pytest.mark.parametrize("is_streaming", [True]) # False
@pytest.mark.parametrize("is_streaming", [True, False]) #
def test_groq_response_cost_tracking(is_streaming):
from litellm.utils import (
ModelResponse,
@ -517,4 +517,3 @@ def test_groq_response_cost_tracking(is_streaming):
assert response_cost > 0.0
print(f"response_cost: {response_cost}")
assert False