Formatting

This commit is contained in:
Marcus Moore 2024-09-16 13:55:18 -07:00
parent 7f40f55343
commit b8b3f91ce4
No known key found for this signature in database

View file

@ -10,8 +10,6 @@ use Tests\TestCase;
class DeleteUserTest extends TestCase class DeleteUserTest extends TestCase
{ {
public function testErrorReturnedViaApiIfUserDoesNotExist() public function testErrorReturnedViaApiIfUserDoesNotExist()
{ {
$this->actingAsForApi(User::factory()->deleteUsers()->create()) $this->actingAsForApi(User::factory()->deleteUsers()->create())
@ -33,7 +31,6 @@ class DeleteUserTest extends TestCase
->json(); ->json();
} }
public function testDisallowUserDeletionViaApiIfStillManagingPeople() public function testDisallowUserDeletionViaApiIfStillManagingPeople()
{ {
$manager = User::factory()->create(); $manager = User::factory()->create();
@ -96,7 +93,6 @@ class DeleteUserTest extends TestCase
->json(); ->json();
} }
public function testPermissionsForDeletingIfNotInSameCompanyAndNotSuperadmin() public function testPermissionsForDeletingIfNotInSameCompanyAndNotSuperadmin()
{ {
$this->settings->enableMultipleFullCompanySupport(); $this->settings->enableMultipleFullCompanySupport();
@ -150,6 +146,4 @@ class DeleteUserTest extends TestCase
->json(); ->json();
} }
} }