summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/FeedFixture.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-11-14 00:09:38 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2020-12-08 13:58:12 +0100
commit8abddeab4f541883721d912f97dec07bffdfc6b8 (patch)
tree8c176f9ca2fd9e757807481997f265212f154eb2 /tests/Integration/Fixtures/FeedFixture.php
parent3d98707be95322d16f5883d7a945d658d6316146 (diff)
Remove usage of old Folder code
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'tests/Integration/Fixtures/FeedFixture.php')
-rw-r--r--tests/Integration/Fixtures/FeedFixture.php47
1 files changed, 24 insertions, 23 deletions
diff --git a/tests/Integration/Fixtures/FeedFixture.php b/tests/Integration/Fixtures/FeedFixture.php
index 77abd3ee0..0c1e31af9 100644
--- a/tests/Integration/Fixtures/FeedFixture.php
+++ b/tests/Integration/Fixtures/FeedFixture.php
@@ -12,7 +12,6 @@
namespace OCA\News\Tests\Integration\Fixtures;
-
use OCA\News\Db\Feed;
class FeedFixture extends Feed
@@ -20,31 +19,33 @@ class FeedFixture extends Feed
use Fixture;
- public function __construct(array $defaults=[])
+ public function __construct(array $defaults = [])
{
+ parent::__construct();
$defaults = array_merge(
[
- 'userId' => 'test',
- 'urlHash' => 'urlHash',
- 'url' => 'http://the.url.com',
- 'title' => 'title',
- 'faviconLink' => 'http://feed.com/favicon.ico',
- 'added' => 3000,
- 'folderId' => null,
- 'link' => 'http://feed.com/rss',
- 'preventUpdate' => false,
- 'deletedAt' => 0,
- 'articlesPerUpdate' => 40,
- 'httpLastModified' => 10,
- 'httpEtag' => '',
- 'location' => 'http://feed.com/rss',
- 'ordering' => 0,
- 'fullTextEnabled' => false,
- 'pinned' => false,
- 'updateMode' => 0,
- 'updateErrorCount' => 0,
- 'lastUpdateError' => '',
- ], $defaults
+ 'userId' => 'test',
+ 'urlHash' => 'urlHash',
+ 'url' => 'http://the.url.com',
+ 'title' => 'title',
+ 'faviconLink' => 'http://feed.com/favicon.ico',
+ 'added' => 3000,
+ 'folderId' => null,
+ 'link' => 'http://feed.com/rss',
+ 'preventUpdate' => false,
+ 'deletedAt' => 0,
+ 'articlesPerUpdate' => 40,
+ 'httpLastModified' => 10,
+ 'httpEtag' => '',
+ 'location' => 'http://feed.com/rss',
+ 'ordering' => 0,
+ 'fullTextEnabled' => false,
+ 'pinned' => false,
+ 'updateMode' => 0,
+ 'updateErrorCount' => 0,
+ 'lastUpdateError' => '',
+ ],
+ $defaults
);
unset($defaults['items']);
$this->fillDefaults($defaults);