Unverified Commit 1a5aa284 authored by Viral Solani's avatar Viral Solani Committed by GitHub

Merge pull request #107 from viralsolani/analysis-zdr34p

Apply fixes from StyleCI
parents 487bec3c d68e4817
...@@ -2,13 +2,12 @@ ...@@ -2,13 +2,12 @@
namespace Tests\Feature\Frontend; namespace Tests\Feature\Frontend;
use Tests\BrowserKitTestCase; use App\Events\Frontend\Auth\UserConfirmed;
use App\Models\Access\User\User; use App\Models\Access\User\User;
use Illuminate\Support\Facades\App; use App\Notifications\Frontend\Auth\UserNeedsConfirmation;
use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Event;
use App\Events\Frontend\Auth\UserConfirmed;
use Illuminate\Support\Facades\Notification; use Illuminate\Support\Facades\Notification;
use App\Notifications\Frontend\Auth\UserNeedsConfirmation; use Tests\BrowserKitTestCase;
/** /**
* Class LoggedOutRouteTest. * Class LoggedOutRouteTest.
...@@ -65,6 +64,7 @@ class LoggedOutRouteTest extends BrowserKitTestCase ...@@ -65,6 +64,7 @@ class LoggedOutRouteTest extends BrowserKitTestCase
* Create an unconfirmed user and assure the user gets * Create an unconfirmed user and assure the user gets
* confirmed when hitting the confirmation route. * confirmed when hitting the confirmation route.
*/ */
/** @test */ /** @test */
public function confirm_account_route() public function confirm_account_route()
{ {
...@@ -86,6 +86,7 @@ class LoggedOutRouteTest extends BrowserKitTestCase ...@@ -86,6 +86,7 @@ class LoggedOutRouteTest extends BrowserKitTestCase
* Assure the user gets resent a confirmation email * Assure the user gets resent a confirmation email
* after hitting the resend confirmation route. * after hitting the resend confirmation route.
*/ */
/** @test */ /** @test */
public function resend_confirm_account_route() public function resend_confirm_account_route()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment