Fix namespaces

This commit is contained in:
Bubka 2023-03-17 17:54:05 +01:00
parent b5f8322ea3
commit c717e6b279
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Unit\Api\v1\Controllers;
namespace Tests\Api\v1;
use App\Models\User;
use Illuminate\Support\Facades\Config;
@ -26,7 +26,7 @@ class ThrottlingTest extends FeatureTestCase
$this->actingAs($user, 'api-guard');
for ($i=0; $i < $throttle - 1; $i++) {
for ($i = 0; $i < $throttle - 1; $i++) {
$this->json('GET', '/api/v1/twofaccounts/count');
}

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Unit\Extensions;
namespace Tests\Feature\Extensions;
use App\Extensions\RemoteUserProvider;
use App\Models\User;