Browse Source

Fix some tests namespaces

Bubka 3 years ago
parent
commit
684a8a0acb

+ 1 - 1
tests/Feature/Http/Auth/ForgotPasswordControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Illuminate\Support\Facades\Hash;

+ 1 - 1
tests/Feature/Http/Auth/LoginTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Tests\FeatureTestCase;

+ 1 - 1
tests/Feature/Http/Auth/PasswordControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Tests\FeatureTestCase;

+ 1 - 1
tests/Feature/Http/Auth/RegisterControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use Tests\FeatureTestCase;
 

+ 1 - 1
tests/Feature/Http/Auth/ResetPasswordControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Illuminate\Support\Facades\Hash;

+ 1 - 1
tests/Feature/Http/Auth/UserControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Tests\FeatureTestCase;

+ 1 - 1
tests/Feature/Http/Auth/WebAuthnDeviceLostControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Tests\FeatureTestCase;

+ 1 - 1
tests/Feature/Http/Auth/WebAuthnManageControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Tests\FeatureTestCase;

+ 1 - 1
tests/Feature/Http/Auth/WebAuthnRecoveryControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Tests\FeatureTestCase;

+ 1 - 1
tests/Feature/Http/Auth/WebauthnLoginControllerTest.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Feature\Auth;
+namespace Tests\Feature\Http\Auth;
 
 use App\Models\User;
 use Tests\FeatureTestCase;