diff options
author | yemkareems <yemkareems@gmail.com> | 2024-10-28 18:47:05 +0530 |
---|---|---|
committer | yemkareems <yemkareems@gmail.com> | 2024-10-28 18:47:05 +0530 |
commit | de1460194424a2f43e36576d4b78930eb0ef372a (patch) | |
tree | 47dbc0afa75f0f2e0cbae8e402b459460b5bd094 /tests | |
parent | 64d7677888d43cdf14167188122cd21dc4118284 (diff) | |
download | nextcloud-server-de1460194424a2f43e36576d4b78930eb0ef372a.tar.gz nextcloud-server-de1460194424a2f43e36576d4b78930eb0ef372a.zip |
fix: crypto added manually as expected
Signed-off-by: yemkareems <yemkareems@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Authentication/LoginCredentials/StoreTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |