diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2018-10-29 15:45:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-29 15:45:45 +0100 |
commit | c05e8acdb160599382dc3e392299785669c79560 (patch) | |
tree | 5401f602055b345f8d5da5eab8e86bc13711042e /tests | |
parent | 4a642fc0048c03a24aa199ccc9df23d547f69aa2 (diff) | |
parent | 34a71f57fcc6683eed969fc26e19600dfb529b53 (diff) | |
download | nextcloud-server-c05e8acdb160599382dc3e392299785669c79560.tar.gz nextcloud-server-c05e8acdb160599382dc3e392299785669c79560.zip |
Merge pull request #12019 from nextcloud/icons-svg-api-fixes
Move svg api endpoint
Diffstat (limited to 'tests')
-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); } "; |