Update CartTest.php

This commit is contained in:
Patrick
2021-01-18 22:46:44 +01:00
committed by GitHub
parent 68ba7e70f4
commit ec9f6e4772

View File

@@ -347,7 +347,7 @@ class CartTest extends TestCase
$cart = $this->getCart(); $cart = $this->getCart();
$cart->add(new BuyableProduct([ $cart->add(new BuyableProduct([
'description' => 'Description' 'description' => 'Description',
])); ]));
$cart->update('027c91341fd5cf4d2579b49c4b6a90da', new BuyableProduct([ $cart->update('027c91341fd5cf4d2579b49c4b6a90da', new BuyableProduct([
@@ -368,7 +368,7 @@ class CartTest extends TestCase
$cart = $this->getCart(); $cart = $this->getCart();
$cart->add(new BuyableProduct([ $cart->add(new BuyableProduct([
'description' => 'Description' 'description' => 'Description',
])); ]));
$cart->update('027c91341fd5cf4d2579b49c4b6a90da', ['description' => 'Different description']); $cart->update('027c91341fd5cf4d2579b49c4b6a90da', ['description' => 'Different description']);