We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ad476 commit a404db8Copy full SHA for a404db8
tests/Database/RealTimeFactoryTest.php
@@ -581,7 +581,7 @@ public function testItCanHandleManyToManyPolymorphicRelationships()
581
582
public function testItCanBeUsedToDefineARelationWithinAFactory()
583
{
584
- $post = PostFactory::new()->create();
+ $post = PostDummyFactory::new()->create();
585
586
$this->assertNotNull($post->user);
587
}
@@ -746,7 +746,7 @@ class ReservedWord extends Eloquent
746
use HasFactory;
747
748
749
-class PostFactory extends Factory
+class PostDummyFactory extends Factory
750
751
protected $model = Post::class;
752
0 commit comments