Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
3m1n3nc3 committed Feb 6, 2024
1 parent a5ffbf0 commit a6ce847
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function getEnvironmentSetUp($app)
$_SERVER['KUDISMS_TEST_NUMBERS'] ?? $_ENV['KUDISMS_TEST_NUMBERS'] ?? ''
);

$migration = include __DIR__.'/database/migrations/create_users_tables.php';
$migration = include __DIR__ . '/database/migrations/create_users_tables.php';
$migration->up();
}

Expand All @@ -51,10 +51,10 @@ protected function setUp(): void
parent::setUp();

Factory::guessFactoryNamesUsing(
fn (string $modelName) => 'ToneflixCode\\KudiSmsNotification\\Tests\\Database\\Factories\\'.
fn (string $modelName) => '\\ToneflixCode\\KudiSmsNotification\\Tests\\Database\\Factories\\' .
class_basename(
$modelName
).'Factory'
) . 'Factory'
);
}

Expand Down

0 comments on commit a6ce847

Please sign in to comment.