From a3abe2c4e179765e10f83fbe2986188f8d38b30b Mon Sep 17 00:00:00 2001 From: yemkareems Date: Mon, 28 Oct 2024 18:48:14 +0530 Subject: [PATCH] fix: crypto added manually as expected Signed-off-by: yemkareems --- tests/lib/Authentication/LoginCredentials/StoreTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/Authentication/LoginCredentials/StoreTest.php b/tests/lib/Authentication/LoginCredentials/StoreTest.php index ba3dbf78886..8c1dd2272b2 100644 --- a/tests/lib/Authentication/LoginCredentials/StoreTest.php +++ b/tests/lib/Authentication/LoginCredentials/StoreTest.php @@ -89,7 +89,7 @@ class StoreTest extends TestCase { } public function testGetLoginCredentialsNoTokenProvider() { - $this->store = new Store($this->session, $this->logger, null); + $this->store = new Store($this->session, $this->logger, $this->crypto, null); $this->expectException(CredentialsUnavailableException::class);