summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Command
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-02-11 07:56:31 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-02-16 11:01:10 +0100
commit6cd83ea1da4d24d439a5f30bfc13349f0c25e597 (patch)
treed112b6adc95d0648c6b7ac221bac0998f4e5fdf7 /tests/Unit/Command
parentc09b4d8d3341780022dfdd3edbe5352a1d4a4abd (diff)
remove unused lastModified from feed fetcher
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'tests/Unit/Command')
-rw-r--r--tests/Unit/Command/ShowFeedTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Command/ShowFeedTest.php b/tests/Unit/Command/ShowFeedTest.php
index 6383c3f19..ace16e0af 100644
--- a/tests/Unit/Command/ShowFeedTest.php
+++ b/tests/Unit/Command/ShowFeedTest.php
@@ -72,7 +72,7 @@ class ShowFeedTest extends TestCase
$this->fetcher->expects($this->exactly(1))
->method('fetch')
- ->with('feed', null, true, 'user', 'user')
+ ->with('feed', true, 'user', 'user')
->willReturn([['feed'], [['items']]]);
$this->consoleOutput->expects($this->exactly(2))
@@ -106,7 +106,7 @@ class ShowFeedTest extends TestCase
$this->fetcher->expects($this->exactly(1))
->method('fetch')
- ->with('feed', null, true, 'user', 'user')
+ ->with('feed', true, 'user', 'user')
->will($this->throwException(new ServiceNotFoundException('test')));
$this->consoleOutput->expects($this->exactly(2))