From 9b138c8ca2a6fe1b288d230533441aafcfca9ea9 Mon Sep 17 00:00:00 2001 From: Guido Falsi Date: Sun, 18 Aug 2024 22:10:37 +0200 Subject: [PATCH] Add back testing code removed by mistake. --- tests/Unit/Auth/ManagerTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Unit/Auth/ManagerTest.php b/tests/Unit/Auth/ManagerTest.php index 4ae8290..fdec2de 100644 --- a/tests/Unit/Auth/ManagerTest.php +++ b/tests/Unit/Auth/ManagerTest.php @@ -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(); }