Remove duplicate trait

This commit is contained in:
Marcus Moore 2024-03-14 13:11:53 -07:00
parent 1afb724606
commit 948dc3c974
No known key found for this signature in database
2 changed files with 1 additions and 4 deletions

View file

@ -5,13 +5,10 @@ namespace Tests\Feature\Api\Users;
use App\Models\User;
use Tests\Support\InteractsWithSettings;
use Tests\TestCase;
use Tests\Support\InteractsWithAuthentication;
class UpdateUserApiTest extends TestCase
{
use InteractsWithSettings;
use InteractsWithAuthentication;
public function testApiUsersCanBeActivatedWithNumber()
{
@ -64,5 +61,4 @@ class UpdateUserApiTest extends TestCase
$this->assertEquals(0, $user->refresh()->activated);
}
}

View file

@ -23,6 +23,7 @@ class AssetTest extends TestCase
$this->assertModelExists($b);
}
public function testAutoIncrementCollision()
{
$this->settings->enableAutoIncrement();