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:
Diffstat (limited to 'apps/dav/tests/unit')
-rw-r--r--apps/dav/tests/unit/Controller/BirthdayCalendarControllerTest.php2
-rw-r--r--apps/dav/tests/unit/Migration/RegenerateBirthdayCalendarsTest.php6
2 files changed, 4 insertions, 4 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'));
diff --git a/apps/dav/tests/unit/Migration/RegenerateBirthdayCalendarsTest.php b/apps/dav/tests/unit/Migration/RegenerateBirthdayCalendarsTest.php
index 05e12bbda6e..74af6af88dc 100644
--- a/apps/dav/tests/unit/Migration/RegenerateBirthdayCalendarsTest.php
+++ b/apps/dav/tests/unit/Migration/RegenerateBirthdayCalendarsTest.php
@@ -76,7 +76,7 @@ class RegenerateBirthdayCalendarsTest extends TestCase {
->with('Adding background jobs to regenerate birthday calendar');
$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'));
@@ -128,10 +128,10 @@ class RegenerateBirthdayCalendarsTest extends TestCase {
->with('Repair step already executed');
$this->userManager->expects($this->never())
- ->method('callForAllUsers');
+ ->method('callForSeenUsers');
$this->migration->run($output);
}
-} \ No newline at end of file
+}