summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-04-17 15:55:47 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-04-24 16:24:53 +0200
commit96bab4f96939af9b881ad6e15d085fb446b6c7a4 (patch)
tree7cb27d6f9b4dbe495beeda5d5cd13f3ff411fb0e /apps
parent1d1c8b4e692a581883295857a7351c0a14e2dfba (diff)
downloadnextcloud-server-96bab4f96939af9b881ad6e15d085fb446b6c7a4.tar.gz
nextcloud-server-96bab4f96939af9b881ad6e15d085fb446b6c7a4.zip
remove obsolete use statements
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps')
-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
+}