diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2022-12-19 12:34:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 12:34:05 +0100 |
commit | 75e369d3069fea662af7ef41378f8ef4460e3ce1 (patch) | |
tree | b5609e68c1749f507741a048c66f1d521cabd205 /apps/user_ldap/tests | |
parent | 1bae41ccecfb45b72e745f35e9eda73de32d0f28 (diff) | |
parent | 723c1b8adc4337dbbcf2598cf37bf37b099eb148 (diff) | |
download | nextcloud-server-75e369d3069fea662af7ef41378f8ef4460e3ce1.tar.gz nextcloud-server-75e369d3069fea662af7ef41378f8ef4460e3ce1.zip |
Merge pull request #35231 from nextcloud/fix/user_ldap-cache-fetched-list-of-groups
Cache the fetched list of groups
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r-- | apps/user_ldap/tests/AccessTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/AccessTest.php b/apps/user_ldap/tests/AccessTest.php index c2902a67766..ce05839c842 100644 --- a/apps/user_ldap/tests/AccessTest.php +++ b/apps/user_ldap/tests/AccessTest.php @@ -678,7 +678,7 @@ class AccessTest extends TestCase { $this->groupMapper->expects($this->never()) ->method('getNameByDN'); - $this->connection->expects($this->exactly(2)) + $this->connection->expects($this->exactly(3)) ->method('writeToCache'); $groups = $this->access->fetchListOfGroups($filter, $attributes); |