]> BookStack Code Mirror - bookstack/blobdiff - tests/Commands/ResetMfaCommandTest.php
Fixed OIDC Logout
[bookstack] / tests / Commands / ResetMfaCommandTest.php
index 550f6d390ede0f05159681c1ee15aa13b43e8eca..85f8f6430a769e77ee9e18ef5ac009526e6ca3d0 100644 (file)
@@ -2,8 +2,8 @@
 
 namespace Tests\Commands;
 
-use BookStack\Auth\Access\Mfa\MfaValue;
-use BookStack\Auth\User;
+use BookStack\Access\Mfa\MfaValue;
+use BookStack\Users\Models\User;
 use Tests\TestCase;
 
 class ResetMfaCommandTest extends TestCase
@@ -58,7 +58,7 @@ class ResetMfaCommandTest extends TestCase
 
     public function test_giving_non_existing_user_shows_error_message()
     {
-        $this->artisan("bookstack:reset-mfa [email protected]")
+        $this->artisan('bookstack:reset-mfa [email protected]')
             ->expectsOutput('A user where [email protected] could not be found.')
             ->assertExitCode(1);
     }