diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-06-24 13:09:15 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-08-11 18:22:11 +0200 |
commit | 7ea262dba03cceefe0646f2216b506d66c3dcbc9 (patch) | |
tree | 42ac612ef82528b7707a718099ac09016438d751 /apps/user_ldap/tests | |
parent | a7875c24315ea4dee0bc164835418091229ae7f0 (diff) | |
download | nextcloud-server-7ea262dba03cceefe0646f2216b506d66c3dcbc9.tar.gz nextcloud-server-7ea262dba03cceefe0646f2216b506d66c3dcbc9.zip |
LDAP: shortcut in reading nested group members when IN_CHAIN is available
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r-- | apps/user_ldap/tests/Group_LDAPTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/user_ldap/tests/Group_LDAPTest.php b/apps/user_ldap/tests/Group_LDAPTest.php index f8dd5af167f..3143054940d 100644 --- a/apps/user_ldap/tests/Group_LDAPTest.php +++ b/apps/user_ldap/tests/Group_LDAPTest.php @@ -73,6 +73,8 @@ class Group_LDAPTest extends TestCase { ->method('getConnection') ->willReturn($connector); + $access->userManager = $this->createMock(Manager::class); + return $access; } |