Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin committed Feb 18, 2024
1 parent e44d16d commit 23732e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion database/factories/NameFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class NameFactory extends Factory
*/
public function definition(): array
{
$gender = fake()->randomElement(['male','female']);
$gender = fake()->randomElement(['male', 'female']);

return [
'gender' => $gender,
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/NameTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace Tests\Feature;

use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Str;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
use Illuminate\Support\Str;

class NameTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/SearchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace Tests\Feature;

use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Str;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
use Illuminate\Support\Str;

class SearchTest extends TestCase
{
Expand Down

0 comments on commit 23732e4

Please sign in to comment.