summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Command
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-02-11 09:15:49 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-02-16 10:16:15 +0100
commitc09b4d8d3341780022dfdd3edbe5352a1d4a4abd (patch)
tree80c40089cd12b138a0c2db5027f1362baed5786e /tests/Unit/Command
parent961c56177a1cd56c1d5292d3246345ab31fb4f86 (diff)
prefer the feeds logo over the favicon
The logo of the feed is prefered if it is a square picture, else the favicon is returned. Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Co-authored-by: Sean Molenaar <SMillerDev@users.noreply.github.com>
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 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))