From 948dc3c974eece8042ee47b953e49a5dca5414dd Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Thu, 14 Mar 2024 13:11:53 -0700 Subject: [PATCH] Remove duplicate trait --- tests/Feature/Api/Users/UpdateUserApiTest.php | 4 ---- tests/Unit/AssetTest.php | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/Feature/Api/Users/UpdateUserApiTest.php b/tests/Feature/Api/Users/UpdateUserApiTest.php index 81c1154648..0786b171e4 100644 --- a/tests/Feature/Api/Users/UpdateUserApiTest.php +++ b/tests/Feature/Api/Users/UpdateUserApiTest.php @@ -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); } - } diff --git a/tests/Unit/AssetTest.php b/tests/Unit/AssetTest.php index 7670d10753..d3d9a90114 100644 --- a/tests/Unit/AssetTest.php +++ b/tests/Unit/AssetTest.php @@ -23,6 +23,7 @@ class AssetTest extends TestCase $this->assertModelExists($b); } + public function testAutoIncrementCollision() { $this->settings->enableAutoIncrement();