summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Db/FeedTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Db/FeedTest.php')
-rw-r--r--tests/Unit/Db/FeedTest.php25
1 files changed, 13 insertions, 12 deletions
diff --git a/tests/Unit/Db/FeedTest.php b/tests/Unit/Db/FeedTest.php
index 47595633d..1812b7164 100644
--- a/tests/Unit/Db/FeedTest.php
+++ b/tests/Unit/Db/FeedTest.php
@@ -51,18 +51,19 @@ class FeedTest extends TestCase
$this->assertEquals(
[
- 'id' => 3,
- 'url' => 'http://google.com/some/weird/path',
- 'title' => 'title',
- 'faviconLink' => 'favicon',
- 'added' => 123,
- 'folderId' => 1,
- 'unreadCount' => 321,
- 'ordering' => 2,
- 'pinned' => true,
- 'link' => 'https://www.google.com/some/weird/path',
- 'updateErrorCount' => 2,
- 'lastUpdateError' => 'hi'
+ 'id' => 3,
+ 'url' => 'http://google.com/some/weird/path',
+ 'title' => 'title',
+ 'faviconLink' => 'favicon',
+ 'added' => 123,
+ 'folderId' => 1,
+ 'unreadCount' => 321,
+ 'ordering' => 2,
+ 'pinned' => true,
+ 'link' => 'https://www.google.com/some/weird/path',
+ 'updateErrorCount' => 2,
+ 'lastUpdateError' => 'hi',
+ 'items' => [],
], $feed->toAPI()
);
}