summaryrefslogtreecommitdiffstats
path: root/tests/unit/fetcher/FeedFetcherTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/fetcher/FeedFetcherTest.php')
-rw-r--r--tests/unit/fetcher/FeedFetcherTest.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/fetcher/FeedFetcherTest.php b/tests/unit/fetcher/FeedFetcherTest.php
index 6a0cec4dc..2d31fb18a 100644
--- a/tests/unit/fetcher/FeedFetcherTest.php
+++ b/tests/unit/fetcher/FeedFetcherTest.php
@@ -136,7 +136,8 @@ class FeedFetcherTest extends \PHPUnit_Framework_TestCase {
$this->title = 'my<' title';
$this->guid = 'hey guid here';
$this->body = 'let the bodies hit the floor <a href="test">test</a>';
- $this->body2 = 'let the bodies hit the floor <a target="_blank" href="test">test</a>';
+ $this->body2 = 'let the bodies hit the floor ' .
+ '<a target="_blank" href="test">test</a>';
$this->pub = 23111;
$this->author = '&lt;boogieman';
$this->enclosureLink = 'http://enclosure.you';
@@ -232,7 +233,8 @@ class FeedFetcherTest extends \PHPUnit_Framework_TestCase {
}
- private function createItem($author=false, $enclosureType=null, $noPubDate=false) {
+ private function createItem($author=false, $enclosureType=null,
+ $noPubDate=false) {
$this->expectItem('get_permalink', $this->permalink);
$this->expectItem('get_title', $this->title);
$this->expectItem('get_id', $this->guid);