Update CartTest.php

This commit is contained in:
Patrick
2021-01-18 22:33:51 +01:00
committed by GitHub
parent 209a813a8f
commit f9f072a13b

View File

@@ -365,7 +365,10 @@ class CartTest extends TestCase
$cart = $this->getCart(); $cart = $this->getCart();
$cart->add(new BuyableProduct()); $cart->add(new BuyableProduct([
'name' => null,
'title' => null
));
$cart->update('027c91341fd5cf4d2579b49c4b6a90da', ['description' => 'Different description']); $cart->update('027c91341fd5cf4d2579b49c4b6a90da', ['description' => 'Different description']);