summaryrefslogtreecommitdiffstats
path: root/tests/unit/utility/FaviconFetcherTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/utility/FaviconFetcherTest.php')
-rw-r--r--tests/unit/utility/FaviconFetcherTest.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/unit/utility/FaviconFetcherTest.php b/tests/unit/utility/FaviconFetcherTest.php
index 833154639..68a816ea6 100644
--- a/tests/unit/utility/FaviconFetcherTest.php
+++ b/tests/unit/utility/FaviconFetcherTest.php
@@ -239,8 +239,6 @@ class FaviconFetcherTest extends \PHPUnit_Framework_TestCase {
public function testEmptyFilePathDoesNotOpenFile() {
$faviconPath = "owncloud/core/img/favicon.png";
- $html = $this->getFaviconHTML($faviconPath);
-
$url = '';
$this->fileFactory->expects($this->never())
@@ -251,8 +249,6 @@ class FaviconFetcherTest extends \PHPUnit_Framework_TestCase {
public function testInvalidHostnameDoesNotOpenFile() {
$faviconPath = "owncloud/core/img/favicon.png";
- $html = $this->getFaviconHTML($faviconPath);
-
$url = "a.b_c.de";
$this->fileFactory->expects($this->never())
@@ -264,8 +260,6 @@ class FaviconFetcherTest extends \PHPUnit_Framework_TestCase {
public function testInvalidHostnameDoesNotOpenFileHttp() {
$faviconPath = "owncloud/core/img/favicon.png";
- $html = $this->getFaviconHTML($faviconPath);
-
$url = "http://a.b_c.de";
$this->fileFactory->expects($this->never())