summaryrefslogtreecommitdiffstats
path: root/apps/theming/tests/Controller/UserThemeControllerTest.php
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2022-09-27 12:14:38 +0200
committerszaimen <szaimen@e.mail.de>2022-09-27 13:52:49 +0200
commitc9a372034f9aafcc074ac6b34d2af264c3f58ee4 (patch)
tree439307b5ebb99de09e7369d5beef99d7d75c5940 /apps/theming/tests/Controller/UserThemeControllerTest.php
parent0e41530b807244e213e3e2566c0ffe30ed809a32 (diff)
downloadnextcloud-server-c9a372034f9aafcc074ac6b34d2af264c3f58ee4.tar.gz
nextcloud-server-c9a372034f9aafcc074ac6b34d2af264c3f58ee4.zip
fix highcontrast theme icons
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/theming/tests/Controller/UserThemeControllerTest.php')
-rw-r--r--apps/theming/tests/Controller/UserThemeControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/tests/Controller/UserThemeControllerTest.php b/apps/theming/tests/Controller/UserThemeControllerTest.php
index ffacf5108a5..a6f73a087fc 100644
--- a/apps/theming/tests/Controller/UserThemeControllerTest.php
+++ b/apps/theming/tests/Controller/UserThemeControllerTest.php
@@ -72,7 +72,7 @@ class UserThemeControllerTest extends TestCase {
'default' => $this->createMock(DefaultTheme::class),
'light' => $this->createMock(LightTheme::class),
'dark' => $this->createMock(DarkTheme::class),
- 'highcontrast' => $this->createMock(HighContrastTheme::class),
+ 'light-highcontrast' => $this->createMock(HighContrastTheme::class),
'dark-highcontrast' => $this->createMock(DarkHighContrastTheme::class),
'opendyslexic' => $this->createMock(DyslexiaFont::class),
];
@@ -102,7 +102,7 @@ class UserThemeControllerTest extends TestCase {
['default'],
['light'],
['dark'],
- ['highcontrast'],
+ ['light-highcontrast'],
['dark-highcontrast'],
['opendyslexic'],
['', OCSBadRequestException::class],