summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Command/ShowFeedTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Command/ShowFeedTest.php')
-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 ecaf4b0a0..6383c3f19 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', true, null, true, 'user', 'user')
+ ->with('feed', null, 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', true, null, true, 'user', 'user')
+ ->with('feed', null, true, 'user', 'user')
->will($this->throwException(new ServiceNotFoundException('test')));
$this->consoleOutput->expects($this->exactly(2))