Skip to content

Commit 0843ed0

Browse files
committed
fix: test
refs: #49
1 parent f29abfb commit 0843ed0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fixtures/CommandTest/seeder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
namespace Database\Seeders;
44

55
use Illuminate\Database\Seeder;
6-
use RonasIT\Support\Tests\Support\Command\Models\Post;
6+
use RonasIT\Support\Tests\Support\Command\Factories\PostFactory;
77

88
class PostSeeder extends Seeder
99
{
1010
public function run()
1111
{
12-
Post::factory()->create();
12+
PostFactory::new()->create();
1313

1414
}
1515
}

0 commit comments

Comments
 (0)