We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440013f commit 3936232Copy full SHA for 3936232
tests/SushiTest.php
@@ -7,7 +7,6 @@
7
use Illuminate\Database\Schema\Blueprint;
8
use Illuminate\Support\Facades\File;
9
use Illuminate\Support\Facades\Validator;
10
-use Orchestra\Testbench\Concerns\HandlesAnnotations;
11
use Orchestra\Testbench\TestCase;
12
13
use function Orchestra\Testbench\laravel_version_compare;
@@ -199,7 +198,7 @@ public function it_runs_method_after_migration_when_defined()
199
198
* */
200
function sushi_models_can_relate_to_models_in_regular_sqlite_databases()
201
{
202
- if (! trait_exists(HandlesAnnotations::class)) {
+ if (! trait_exists('\Orchestra\Testbench\Concerns\HandlesAnnotations')) {
203
$this->markTestSkipped('Requires HandlesAnnotation trait to define sqlite connection using PHPUnit annotation');
204
}
205
0 commit comments