From b8b3f91ce49e5d1829bcb2a84f4d145dc1701b29 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Mon, 16 Sep 2024 13:55:18 -0700 Subject: [PATCH] Formatting --- tests/Feature/Users/Api/DeleteUserTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/Feature/Users/Api/DeleteUserTest.php b/tests/Feature/Users/Api/DeleteUserTest.php index 49625daac3..315bb56189 100644 --- a/tests/Feature/Users/Api/DeleteUserTest.php +++ b/tests/Feature/Users/Api/DeleteUserTest.php @@ -10,8 +10,6 @@ use Tests\TestCase; class DeleteUserTest extends TestCase { - - public function testErrorReturnedViaApiIfUserDoesNotExist() { $this->actingAsForApi(User::factory()->deleteUsers()->create()) @@ -33,7 +31,6 @@ class DeleteUserTest extends TestCase ->json(); } - public function testDisallowUserDeletionViaApiIfStillManagingPeople() { $manager = User::factory()->create(); @@ -96,7 +93,6 @@ class DeleteUserTest extends TestCase ->json(); } - public function testPermissionsForDeletingIfNotInSameCompanyAndNotSuperadmin() { $this->settings->enableMultipleFullCompanySupport(); @@ -150,6 +146,4 @@ class DeleteUserTest extends TestCase ->json(); } - - }