summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Command
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-12-26 13:09:41 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2020-12-30 11:21:44 +0100
commit05377d023ef4d43818a4b42039c8143cb0f907e4 (patch)
treec01fc681c42671dad774de7dc7c46524eb9ae015 /tests/Unit/Command
parent27bd54058050a70bd1c9ec8cfcdf42d38541f1b0 (diff)
Remove PHPunit integration tests
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'tests/Unit/Command')
-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);