From 140be26159305e39b7e80a7f5ae5859687e2404a Mon Sep 17 00:00:00 2001 From: Adrian Hopek Date: Fri, 18 Mar 2022 09:35:08 +0100 Subject: [PATCH] fix --- tests/Unit/VacationRequestStatesTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Unit/VacationRequestStatesTest.php b/tests/Unit/VacationRequestStatesTest.php index 8713f84..140b5ca 100644 --- a/tests/Unit/VacationRequestStatesTest.php +++ b/tests/Unit/VacationRequestStatesTest.php @@ -6,6 +6,7 @@ namespace Tests\Unit; use Illuminate\Foundation\Testing\DatabaseMigrations; use Illuminate\Support\Carbon; +use Illuminate\Support\Facades\Bus; use Illuminate\Support\Facades\Notification; use Tests\TestCase; use Tests\Traits\InteractsWithYearPeriods; @@ -30,6 +31,7 @@ class VacationRequestStatesTest extends TestCase parent::setUp(); Notification::fake(); + Bus::fake(); $this->stateManager = $this->app->make(VacationRequestStateManager::class);