From 71d031d46e578d9c491dda68e6039a1788983052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Robles?= Date: Wed, 15 Nov 2023 11:15:42 +0100 Subject: [PATCH] remove unused class --- tests/Integration/DataTransferObjectTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/Integration/DataTransferObjectTest.php b/tests/Integration/DataTransferObjectTest.php index 5726a8a..659faea 100644 --- a/tests/Integration/DataTransferObjectTest.php +++ b/tests/Integration/DataTransferObjectTest.php @@ -11,7 +11,6 @@ use Mockery; use OpenSoutheners\LaravelDto\Tests\Fixtures\CreatePostData; use OpenSoutheners\LaravelDto\Tests\Fixtures\Post; -use OpenSoutheners\LaravelDto\Tests\Fixtures\PostFactory; use OpenSoutheners\LaravelDto\Tests\Fixtures\PostStatus; use OpenSoutheners\LaravelDto\Tests\Fixtures\UpdatePostData; use OpenSoutheners\LaravelDto\Tests\Fixtures\UpdatePostWithDefaultData; @@ -141,7 +140,7 @@ public function testDataTransferObjectWithDefaultValueAttribute() ]); $this->actingAs($user); - + $fooBarPost = Post::factory()->create([ 'title' => 'Foo bar', 'slug' => 'foo-bar', @@ -172,7 +171,7 @@ public function testDataTransferObjectWithDefaultValueAttributeGetsBoundWhenOneI ]); $this->actingAs($user); - + $fooBarPost = Post::factory()->create([ 'title' => 'Foo bar', 'slug' => 'foo-bar',