From 3a4ce6c33d3f0bc71a7dc260b6db3734251b19d5 Mon Sep 17 00:00:00 2001 From: Mohammad Alavi Date: Sat, 11 Dec 2021 13:35:48 +0330 Subject: [PATCH] remove dead code --- .../Authentication/Tests/Unit/RegisterUserActionTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Containers/AppSection/Authentication/Tests/Unit/RegisterUserActionTest.php b/app/Containers/AppSection/Authentication/Tests/Unit/RegisterUserActionTest.php index f9563f6fc..69f976352 100644 --- a/app/Containers/AppSection/Authentication/Tests/Unit/RegisterUserActionTest.php +++ b/app/Containers/AppSection/Authentication/Tests/Unit/RegisterUserActionTest.php @@ -7,7 +7,6 @@ use App\Containers\AppSection\Authentication\Notifications\Welcome; use App\Containers\AppSection\Authentication\Tests\TestCase; use App\Containers\AppSection\Authentication\UI\API\Requests\RegisterUserRequest; -use Illuminate\Support\Facades\Mail; use Illuminate\Support\Facades\Notification; /** @@ -21,7 +20,6 @@ class RegisterUserActionTest extends TestCase public function testSendNotification_AfterUserRegistration(): void { Notification::fake(); - Mail::fake(); $data = [ 'email' => 'Mahmoud@test.test',