mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Use superuser instead of admin state
This commit is contained in:
parent
efc0929bbc
commit
a528ebeab0
|
@ -12,7 +12,7 @@ class UpdateUserTest extends TestCase
|
|||
|
||||
public function testUsersCanBeActivated()
|
||||
{
|
||||
$admin = User::factory()->admin()->create();
|
||||
$admin = User::factory()->superuser()->create();
|
||||
$user = User::factory()->create(['activated' => false]);
|
||||
|
||||
$this->actingAs($admin)
|
||||
|
@ -27,7 +27,7 @@ class UpdateUserTest extends TestCase
|
|||
|
||||
public function testUsersCanBeDeactivated()
|
||||
{
|
||||
$admin = User::factory()->admin()->create();
|
||||
$admin = User::factory()->superuser()->create();
|
||||
$user = User::factory()->create(['activated' => true]);
|
||||
|
||||
$this->actingAs($admin)
|
||||
|
@ -44,7 +44,7 @@ class UpdateUserTest extends TestCase
|
|||
|
||||
public function testUsersUpdatingThemselvesDoNotDeactivateTheirAccount()
|
||||
{
|
||||
$admin = User::factory()->admin()->create(['activated' => true]);
|
||||
$admin = User::factory()->superuser()->create(['activated' => true]);
|
||||
|
||||
$this->actingAs($admin)
|
||||
->put(route('users.update', $admin), [
|
||||
|
|
Loading…
Reference in a new issue