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 5c6ecc7 commit aee49d4Copy full SHA for aee49d4
1 file changed
tests/TestCase.php
@@ -5,8 +5,6 @@
5
use DirectoryTree\Bartender\BartenderServiceProvider;
6
use Orchestra\Testbench\TestCase as BaseTestCase;
7
8
-use function Orchestra\Testbench\laravel_migration_path;
9
-
10
class TestCase extends BaseTestCase
11
{
12
/**
@@ -22,7 +20,7 @@ protected function defineEnvironment($app): void
22
20
*/
23
21
protected function defineDatabaseMigrations(): void
24
25
- $this->loadMigrationsFrom(laravel_migration_path('/'));
+ $this->loadLaravelMigrations();
26
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
27
}
28
0 commit comments