From f4673140f791efa883eb8802058ca944faf03949 Mon Sep 17 00:00:00 2001 From: Patrick Henninger Date: Tue, 16 Apr 2019 12:12:11 +0200 Subject: [PATCH] Codestyle --- tests/CartTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CartTest.php b/tests/CartTest.php index 8fb366d..8c278e5 100644 --- a/tests/CartTest.php +++ b/tests/CartTest.php @@ -1155,7 +1155,7 @@ class CartTest extends TestCase // https://github.com/bumbummen99/LaravelShoppingcart/pull/5 $cart = $this->getCart(); - $cartItem = $cart->add('293ad', 'Product 1', 1, 9.99, 550, ['size' => 'large']); + $cartItem = $cart->add('293ad', 'Product 1', 1, 9.99, 550, ['size' => 'large']); $this->assertEquals(550, $cartItem->weight); $this->assertTrue($cartItem->options->has('size'));