diff options
author | szaimen <szaimen@e.mail.de> | 2022-09-27 12:14:38 +0200 |
---|---|---|
committer | szaimen <szaimen@e.mail.de> | 2022-09-27 13:52:49 +0200 |
commit | c9a372034f9aafcc074ac6b34d2af264c3f58ee4 (patch) | |
tree | 439307b5ebb99de09e7369d5beef99d7d75c5940 /apps/theming/tests/Controller/UserThemeControllerTest.php | |
parent | 0e41530b807244e213e3e2566c0ffe30ed809a32 (diff) | |
download | nextcloud-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.php | 4 |
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], |