From ec9f6e477260fad8dc4c0d71b5898298f2a638a1 Mon Sep 17 00:00:00 2001 From: Patrick Date: Mon, 18 Jan 2021 22:46:44 +0100 Subject: [PATCH] Update CartTest.php --- tests/CartTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CartTest.php b/tests/CartTest.php index 4e3f6b4..8c876bb 100644 --- a/tests/CartTest.php +++ b/tests/CartTest.php @@ -347,7 +347,7 @@ class CartTest extends TestCase $cart = $this->getCart(); $cart->add(new BuyableProduct([ - 'description' => 'Description' + 'description' => 'Description', ])); $cart->update('027c91341fd5cf4d2579b49c4b6a90da', new BuyableProduct([ @@ -368,7 +368,7 @@ class CartTest extends TestCase $cart = $this->getCart(); $cart->add(new BuyableProduct([ - 'description' => 'Description' + 'description' => 'Description', ])); $cart->update('027c91341fd5cf4d2579b49c4b6a90da', ['description' => 'Different description']);