summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Command/UpdateFeedTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Command/UpdateFeedTest.php')
-rw-r--r--tests/Unit/Command/UpdateFeedTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Unit/Command/UpdateFeedTest.php b/tests/Unit/Command/UpdateFeedTest.php
index bd0cd34e4..c0885f85a 100644
--- a/tests/Unit/Command/UpdateFeedTest.php
+++ b/tests/Unit/Command/UpdateFeedTest.php
@@ -74,7 +74,7 @@ class UpdateFeedTest extends TestCase
->method('getLastUpdateError');
$this->service->expects($this->exactly(1))
- ->method('findForUser')
+ ->method('find')
->with('admin', '1')
->willReturn($feed);
@@ -108,7 +108,7 @@ class UpdateFeedTest extends TestCase
->willReturn('Problem');
$this->service->expects($this->exactly(1))
- ->method('findForUser')
+ ->method('find')
->with('admin', '1')
->willReturn($feed);
@@ -140,7 +140,7 @@ class UpdateFeedTest extends TestCase
$feed = $this->createMock(Feed::class);
$this->service->expects($this->exactly(1))
- ->method('findForUser')
+ ->method('find')
->with('admin', '1')
->willReturn($feed);