Update CartItemTest.php

This commit is contained in:
Patrick
2022-02-05 22:15:32 +01:00
committed by GitHub
parent 543483b14d
commit 4782c52f4d

View File

@@ -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());
}