aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoryemkareems <yemkareems@gmail.com>2024-10-28 18:47:05 +0530
committeryemkareems <yemkareems@gmail.com>2024-10-28 18:47:05 +0530
commitde1460194424a2f43e36576d4b78930eb0ef372a (patch)
tree47dbc0afa75f0f2e0cbae8e402b459460b5bd094 /tests
parent64d7677888d43cdf14167188122cd21dc4118284 (diff)
downloadnextcloud-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.php2
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);