Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-04-24 21:55:53 +0300
committerGitHub <noreply@github.com>2019-04-24 21:55:53 +0300
commit9dfea7ed32ee87895563d1c3fd18e9a33eaa2754 (patch)
treee6ee431898d0e18dc678e9884b7a24a1ad0182c0 /apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php
parentfd42be531c12e26f1dc8a719f763d3967bda10ee (diff)
parent35ba5ae2a07be5d50a00f2d3a8b1da9da22ddf71 (diff)
Merge pull request #15219 from nextcloud/backport/15141/stable16
[stable16] fix searching all users in repair regenerate birthday cal reparir job
Diffstat (limited to 'apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php')
-rw-r--r--apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php b/apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php
index 46ed58df4f9..a105daa2608 100644
--- a/apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php
+++ b/apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php
@@ -78,7 +78,7 @@ class BirthdayCalendarControllerTest extends TestCase {
->with('dav', 'generateBirthdayCalendar', 'yes');
$this->userManager->expects($this->once())
- ->method('callForAllUsers')
+ ->method('callForSeenUsers')
->will($this->returnCallback(function($closure) {
$user1 = $this->createMock(IUser::class);
$user1->method('getUID')->will($this->returnValue('uid1'));