Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/unit/fetcher/FeedFetcherTest.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/unit/fetcher/FeedFetcherTest.php b/tests/unit/fetcher/FeedFetcherTest.php
index 84a704bb0..ac486684b 100644
--- a/tests/unit/fetcher/FeedFetcherTest.php
+++ b/tests/unit/fetcher/FeedFetcherTest.php
@@ -266,15 +266,6 @@ class FeedFetcherTest extends \PHPUnit_Framework_TestCase {
return $feed;
}
-
- public function testFetchThrowsExceptionWhenFetchingFailed() {
- $this->setUpReader($this->url, true, false);
-
- $this->setExpectedException('\OCA\News\Fetcher\FetcherException');
- $this->fetcher->fetch($this->url, false);
- }
-
-
public function testNoFetchIfNotModified(){
$this->setUpReader($this->url, false);;
$result = $this->fetcher->fetch($this->url, false);