From 1246cab1125a9ab9e8966f2918aecb2a043fde07 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sun, 26 Jul 2026 22:10:04 +0000 Subject: [PATCH] test(cost): drop inline comments per repo style --- tests/test_litellm/test_cost_calculator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_litellm/test_cost_calculator.py b/tests/test_litellm/test_cost_calculator.py index 3f169476ee0..21849f0a7b8 100644 --- a/tests/test_litellm/test_cost_calculator.py +++ b/tests/test_litellm/test_cost_calculator.py @@ -2185,7 +2185,6 @@ def test_image_generation_cost_applies_discount_and_margin(): litellm.cost_margin_config = original_margin_config assert raw_cost > 0 - # discount is applied before margin: raw * (1 - 0.10) * (1 + 0.20) expected_cost = raw_cost * 0.90 * 1.20 assert configured_cost == pytest.approx(expected_cost, rel=1e-9) assert configured_cost != pytest.approx(raw_cost, rel=1e-9) @@ -2239,7 +2238,6 @@ def test_video_generation_cost_applies_discount_and_margin(): litellm.cost_margin_config = original_margin_config assert raw_cost == pytest.approx(0.5, rel=1e-9) - # discount is applied before margin: raw * (1 - 0.10) * (1 + 0.20) expected_cost = raw_cost * 0.90 * 1.20 assert configured_cost == pytest.approx(expected_cost, rel=1e-9) assert configured_cost != pytest.approx(raw_cost, rel=1e-9)