diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-10-03 19:26:47 +0200 |
---|---|---|
committer | Michael Weimann <mail@michael-weimann.eu> | 2018-10-03 19:26:47 +0200 |
commit | 065e0c0e491d819658b5e7128fff967244db6681 (patch) | |
tree | 6e23103d128a3fe4c333f3fe0a40a0c29a5d7782 /apps/theming/tests | |
parent | a45ec3d32430f40be93fa5f09832917b82c83f15 (diff) | |
download | nextcloud-server-065e0c0e491d819658b5e7128fff967244db6681.tar.gz nextcloud-server-065e0c0e491d819658b5e7128fff967244db6681.zip |
Fixes the logo test
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'apps/theming/tests')
-rw-r--r-- | apps/theming/tests/UtilTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/tests/UtilTest.php b/apps/theming/tests/UtilTest.php index 61d1dc48301..6348f8423eb 100644 --- a/apps/theming/tests/UtilTest.php +++ b/apps/theming/tests/UtilTest.php @@ -92,7 +92,7 @@ class UtilTest extends TestCase { $invert = $this->util->invertTextColor('aaabbbcccddd123'); $this->assertEquals(false, $invert); } - + public function testInvertTextColorEmpty() { $invert = $this->util->invertTextColor(''); $this->assertEquals(false, $invert); @@ -174,7 +174,7 @@ class UtilTest extends TestCase { public function dataGetAppImage() { return [ - ['core', 'logo.svg', \OC::$SERVERROOT . '/core/img/logo.svg'], + ['core', 'logo/logo.svg', \OC::$SERVERROOT . '/core/img/logo/logo.svg'], ['files', 'external', \OC::$SERVERROOT . '/apps/files/img/external.svg'], ['files', 'external.svg', \OC::$SERVERROOT . '/apps/files/img/external.svg'], ['noapplikethis', 'foobar.svg', false], |