diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-10-29 13:06:55 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-10-29 13:06:55 +0100 |
commit | 34a71f57fcc6683eed969fc26e19600dfb529b53 (patch) | |
tree | 3b0f7b1800cb1550491710eed22883ff80fd726d /tests/lib/Template/IconsCacherTest.php | |
parent | 4b7ef668a4c7a0cb581db83d64c4e9b5d03d8900 (diff) | |
download | nextcloud-server-34a71f57fcc6683eed969fc26e19600dfb529b53.tar.gz nextcloud-server-34a71f57fcc6683eed969fc26e19600dfb529b53.zip |
Fix tests
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/lib/Template/IconsCacherTest.php')
-rw-r--r-- | tests/lib/Template/IconsCacherTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Template/IconsCacherTest.php b/tests/lib/Template/IconsCacherTest.php index 33735e3a45e..c537323e0eb 100644 --- a/tests/lib/Template/IconsCacherTest.php +++ b/tests/lib/Template/IconsCacherTest.php @@ -104,7 +104,7 @@ class IconsCacherTest extends \Test\TestCase { public function testSetIconsFromValidCss() { $css = " icon.test { - --icon-test: url('/index.php/svg/core/actions/add/000?v=1'); + --icon-test: url('/index.php/svg/core/actions/add?color=000&v=1'); background-image: var(--icon-test); } "; @@ -127,7 +127,7 @@ class IconsCacherTest extends \Test\TestCase { public function testSetIconsFromValidCssMultipleTimes() { $css = " icon.test { - --icon-test: url('/index.php/svg/core/actions/add/000?v=1'); + --icon-test: url('/index.php/svg/core/actions/add?color=000&v=1'); background-image: var(--icon-test); } "; |