diff --git a/fulfillment_test.py b/fulfillment_test.py index 2b8235d..601efd2 100644 --- a/fulfillment_test.py +++ b/fulfillment_test.py @@ -134,7 +134,9 @@ def test_fulfillment_flow(self) -> None: ) final_checkout = checkout.Checkout(**response_json) - expected_total = 3500 + option_cost # Base 3500 + shipping + expected_total = ( + self.fixture_ctx.get_test_price() + option_cost + ) # base price + shipping total_obj = next( (t for t in final_checkout.totals if t.type == "total"), None )