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
{
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();
}
}