Skip to content

Commit 6a68092

Browse files
authored
Revert "Uses LazilyRefreshDatabase by default (laravel#5696)" (laravel#5700)
This reverts commit 4578193.
1 parent 78e1d56 commit 6a68092

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"php": "^7.3|^8.0",
99
"fruitcake/laravel-cors": "^2.0",
1010
"guzzlehttp/guzzle": "^7.0.1",
11-
"laravel/framework": "^8.62",
11+
"laravel/framework": "^8.54",
1212
"laravel/sanctum": "^2.11",
1313
"laravel/tinker": "^2.5"
1414
},

tests/Feature/ExampleTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Tests\Feature;
44

5+
use Illuminate\Foundation\Testing\RefreshDatabase;
56
use Tests\TestCase;
67

78
class ExampleTest extends TestCase

tests/TestCase.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
namespace Tests;
44

5-
use Illuminate\Foundation\Testing\LazilyRefreshDatabase;
65
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
76

87
abstract class TestCase extends BaseTestCase
98
{
10-
use CreatesApplication, LazilyRefreshDatabase;
9+
use CreatesApplication;
1110
}

0 commit comments

Comments
 (0)