From c61610d22d71c98a7fe217bf7e3ce9cb905e9353 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 20:49:42 +0100 Subject: [PATCH] Update CartTest.php --- tests/CartTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CartTest.php b/tests/CartTest.php index b248c58..996fab5 100644 --- a/tests/CartTest.php +++ b/tests/CartTest.php @@ -1428,7 +1428,7 @@ class CartTest extends TestCase // check item price total $this->assertEquals(190, $cartItem->priceTotal); // check that the sum of cart subvalues matches the total (in order to avoid cart summary to looks wrong) - $this->assertEquals($cart->total(), $cart->subtotal()->add($cart->tax()); + $this->assertEquals($cart->total(), $cart->subtotal()->add($cart->tax())); } /**