Skip to content

Commit e4d830d

Browse files
committed
fix: ci
1 parent 3513e77 commit e4d830d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/app/Factories/CommentFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CommentFactory extends Factory
1212
public function definition()
1313
{
1414
return [
15-
'content' => $this->faker->text
15+
'content' => $this->faker->text()
1616
];
1717
}
1818
}

tests/app/Factories/PostFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class PostFactory extends Factory
1212
public function definition()
1313
{
1414
return [
15-
'title' => $this->faker->title,
16-
'content' => $this->faker->text,
15+
'title' => $this->faker->title(),
16+
'content' => $this->faker->text(),
1717
];
1818
}
1919
}

tests/app/Factories/UserFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ class UserFactory extends Factory
1313
public function definition()
1414
{
1515
return [
16-
'name' => $this->faker->name,
17-
'email' => $this->faker->email,
16+
'name' => $this->faker->name(),
17+
'email' => $this->faker->email(),
1818
'password' => Hash::make('password')
1919
];
2020
}

0 commit comments

Comments
 (0)