diff --git a/tests/CartTest.php b/tests/CartTest.php index ced5879..64f033b 100644 --- a/tests/CartTest.php +++ b/tests/CartTest.php @@ -241,19 +241,6 @@ class CartTest extends TestCase $cart->add(null, 'Some title', 1, 10.00); } - /** - * @test - */ - public function it_will_validate_the_name() - { - $this->expectException(\InvalidArgumentException::class); - $this->expectExceptionMessage('Please supply a valid name.'); - - $cart = $this->getCart(); - - $cart->add(1, null, 1, 10.00); - } - /** * @test */