Skip to content

Commit

Permalink
Add back testing code removed by mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
madpilot78 committed Aug 18, 2024
1 parent 2c26798 commit 9b138c8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Unit/Auth/ManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ public function testWithoutAuthToken(): void

public function testWithAuthTokenNoChallenge(): void
{
$this->assertInstanceOf(
AuthManager::class,
$this->authManager->setAuthToken('token'),
);
$this->expectException(MissingAuthException::class);
$this->authManager->getPassword();
}
Expand Down

0 comments on commit 9b138c8

Please sign in to comment.