summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php')
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php
index c282ad372..344917d27 100644
--- a/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php
+++ b/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php
@@ -93,7 +93,7 @@ class Rss20ParserTest extends PHPUnit_Framework_TestCase
$parser = new Rss20(file_get_contents('tests/fixtures/fulltextrss.xml'));
$feed = $parser->execute();
- $this->assertEquals(time(), $feed->getDate());
+ $this->assertEquals(time(), $feed->getDate(), '', 1);
}
public function testFeedLanguage()
@@ -259,9 +259,5 @@ class Rss20ParserTest extends PHPUnit_Framework_TestCase
$parser = new Rss20(file_get_contents('tests/fixtures/jeux-linux.fr.xml'));
$feed = $parser->execute();
$this->assertNotEmpty($feed->items);
-
- $parser = new Rss20(file_get_contents('tests/fixtures/cercle.psy.xml'));
- $feed = $parser->execute();
- $this->assertNotEmpty($feed->items);
}
}