From 4782c52f4d832172f9f186e4933cfe0ab17866c8 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 22:15:32 +0100 Subject: [PATCH] Update CartItemTest.php --- tests/CartItemTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CartItemTest.php b/tests/CartItemTest.php index 4261f10..4fb4bb0 100644 --- a/tests/CartItemTest.php +++ b/tests/CartItemTest.php @@ -52,7 +52,7 @@ class CartItemTest extends TestCase $this->assertJson($cartItem->toJson()); - $json = '{"rowId":"07d5da5550494c62daf9993cf954303f","id":1,"name":"Some item","qty":2,"price":10.00,"weight":550,"options":{"size":"XL","color":"red"},"discount":"0.00","tax":"10.00","subtotal":"20.00"}'; + $json = '{"rowId":"07d5da5550494c62daf9993cf954303f","id":1,"name":"Some item","qty":2,"price":"10.00","weight":550,"options":{"size":"XL","color":"red"},"discount":"0.00","tax":"10.00","subtotal":"20.00"}'; $this->assertEquals($json, $cartItem->toJson()); }