summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/tests/Jobs/SyncTest.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-11 17:22:00 +0100
committerGitHub <noreply@github.com>2018-01-11 17:22:00 +0100
commit9898ec95c1eeebbcae70329c76c9198298df3c4d (patch)
tree8da960b794c2f3f483d57555acd52d728b2093e4 /apps/user_ldap/tests/Jobs/SyncTest.php
parent33b82f34be55bb5705222d7c146546ae54a29212 (diff)
parentf84ec9256367758b65f37db5f0bc81a9ed2b8d13 (diff)
downloadnextcloud-server-9898ec95c1eeebbcae70329c76c9198298df3c4d.tar.gz
nextcloud-server-9898ec95c1eeebbcae70329c76c9198298df3c4d.zip
Merge pull request #7796 from nextcloud/ldap-sync-fixes
LDAP Sync fixes: revert recursion resolution, fixed handling of pagingsize of 0
Diffstat (limited to 'apps/user_ldap/tests/Jobs/SyncTest.php')
-rw-r--r--apps/user_ldap/tests/Jobs/SyncTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/Jobs/SyncTest.php b/apps/user_ldap/tests/Jobs/SyncTest.php
index f8852a46664..75ffd0e8280 100644
--- a/apps/user_ldap/tests/Jobs/SyncTest.php
+++ b/apps/user_ldap/tests/Jobs/SyncTest.php
@@ -158,7 +158,9 @@ class SyncTest extends TestCase {
return [
[ 3, 3, true ],
[ 3, 5, true ],
- [ 3, 2, false]
+ [ 3, 2, false],
+ [ 0, 4, false],
+ [ null, 4, false]
];
}