Use superuser instead of admin state

This commit is contained in:
Marcus Moore 2023-04-25 11:53:47 -07:00
parent efc0929bbc
commit a528ebeab0
No known key found for this signature in database

View file

@ -12,7 +12,7 @@ class UpdateUserTest extends TestCase
public function testUsersCanBeActivated() public function testUsersCanBeActivated()
{ {
$admin = User::factory()->admin()->create(); $admin = User::factory()->superuser()->create();
$user = User::factory()->create(['activated' => false]); $user = User::factory()->create(['activated' => false]);
$this->actingAs($admin) $this->actingAs($admin)
@ -27,7 +27,7 @@ class UpdateUserTest extends TestCase
public function testUsersCanBeDeactivated() public function testUsersCanBeDeactivated()
{ {
$admin = User::factory()->admin()->create(); $admin = User::factory()->superuser()->create();
$user = User::factory()->create(['activated' => true]); $user = User::factory()->create(['activated' => true]);
$this->actingAs($admin) $this->actingAs($admin)
@ -44,7 +44,7 @@ class UpdateUserTest extends TestCase
public function testUsersUpdatingThemselvesDoNotDeactivateTheirAccount() public function testUsersUpdatingThemselvesDoNotDeactivateTheirAccount()
{ {
$admin = User::factory()->admin()->create(['activated' => true]); $admin = User::factory()->superuser()->create(['activated' => true]);
$this->actingAs($admin) $this->actingAs($admin)
->put(route('users.update', $admin), [ ->put(route('users.update', $admin), [