summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-21 13:53:36 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-21 13:53:47 +0100
commit8ddead06277f7c863fe048e9990d4c9ce0c24424 (patch)
tree699416065dcf10871bf416164f36f1d05a03a480 /tests
parent3306d28e2d45fa03c2ca5b93de45ad59e7aad3f0 (diff)
fix #660
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/db/FeedTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/db/FeedTest.php b/tests/unit/db/FeedTest.php
index 4a91acc2f..f8461a239 100644
--- a/tests/unit/db/FeedTest.php
+++ b/tests/unit/db/FeedTest.php
@@ -29,7 +29,7 @@ class FeedTest extends \PHPUnit_Framework_TestCase {
$feed->setFolderId(1);
$feed->setUnreadCount(321);
$feed->setLink('https://www.google.com/some/weird/path');
-
+ $feed->setLocation('http://google.at');
return $feed;
}
@@ -67,6 +67,7 @@ class FeedTest extends \PHPUnit_Framework_TestCase {
'deletedAt' => null,
'articlesPerUpdate' => null,
'cssClass' => 'custom-google-com',
+ 'location' => 'http://google.at'
], $feed->jsonSerialize());
}