summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Command/FeedAddTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Command/FeedAddTest.php')
-rw-r--r--tests/Unit/Command/FeedAddTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Command/FeedAddTest.php b/tests/Unit/Command/FeedAddTest.php
index c0d4de1bd..0f2d3606f 100644
--- a/tests/Unit/Command/FeedAddTest.php
+++ b/tests/Unit/Command/FeedAddTest.php
@@ -69,7 +69,7 @@ class FeedAddTest extends TestCase
$this->consoleInput->expects($this->exactly(5))
->method('getOption')
->will($this->returnValueMap([
- ['folder', '0'],
+ ['folder', null],
['title', 'title'],
['username', 'user'],
['password', 'pass'],
@@ -80,7 +80,7 @@ class FeedAddTest extends TestCase
$this->service->expects($this->exactly(1))
->method('create')
- ->with('admin', 'http://feed', 0, true, 'title', 'user', 'pass')
+ ->with('admin', 'http://feed', null, true, 'title', 'user', 'pass')
->willReturn($feed);
$this->service->expects($this->exactly(1))