From 596c47329a14533ff48a84afbed16d98fcf7296f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 28 Sep 2022 17:17:21 +0200 Subject: [PATCH] remove import of Foundation\Vite in tests --- tests/Features/ViteBundlerTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Features/ViteBundlerTest.php b/tests/Features/ViteBundlerTest.php index 90e06d78..b544bcac 100644 --- a/tests/Features/ViteBundlerTest.php +++ b/tests/Features/ViteBundlerTest.php @@ -2,7 +2,6 @@ declare(strict_types=1); -use Illuminate\Foundation\Vite as FoundationVite; use Stancl\Tenancy\Features\ViteBundler; use Stancl\Tenancy\Tests\Etc\Tenant; use Stancl\Tenancy\Tests\TestCase; @@ -19,7 +18,7 @@ class ViteBundlerTest extends TestCase $vite = app(\Illuminate\Foundation\Vite::class); - $this->assertInstanceOf(FoundationVite::class, $vite); + $this->assertInstanceOf(\Illuminate\Foundation\Vite::class, $vite); $this->assertNotInstanceOf(StanclVite::class, $vite); config([