diff --git a/tests/Feature/Catalog/ProductControllerTest.php b/tests/Feature/Catalog/ProductControllerTest.php index c583dd4..f81017f 100644 --- a/tests/Feature/Catalog/ProductControllerTest.php +++ b/tests/Feature/Catalog/ProductControllerTest.php @@ -296,10 +296,7 @@ class ProductControllerTest extends TestCase ]); $v1 = $product->variants()->create([ - 'slug' => 'short-running-m', - 'nombre' => 'Short Running M', 'stock' => 5, - 'precio' => 8000.00, ]); $payload = [ @@ -324,7 +321,6 @@ class ProductControllerTest extends TestCase // Variant should still exist untouched $this->assertDatabaseHas('productos_variantes', [ 'id' => $v1->id, - 'slug' => 'short-running-m', 'stock' => 5, ]); }