diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-11-08 17:01:17 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-11-16 09:46:20 +0100 |
commit | e6b7fa6cae5b0db1570fda71d5186bec362432a9 (patch) | |
tree | a272f18ce0e2d7fcf58aeb55f99e793fbb134684 /apps/theming/tests/Themes | |
parent | 62919ac81eb856a15c0131f3cf948bb11b2a5b1f (diff) | |
download | nextcloud-server-e6b7fa6cae5b0db1570fda71d5186bec362432a9.tar.gz nextcloud-server-e6b7fa6cae5b0db1570fda71d5186bec362432a9.zip |
Fix logo invert
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/theming/tests/Themes')
-rw-r--r-- | apps/theming/tests/Themes/DefaultThemeTest.php | 3 | ||||
-rw-r--r-- | apps/theming/tests/Themes/DyslexiaFontTest.php | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/apps/theming/tests/Themes/DefaultThemeTest.php b/apps/theming/tests/Themes/DefaultThemeTest.php index 73e5b14683a..4471dddb01e 100644 --- a/apps/theming/tests/Themes/DefaultThemeTest.php +++ b/apps/theming/tests/Themes/DefaultThemeTest.php @@ -66,7 +66,8 @@ class DefaultThemeTest extends TestCase { $util = new Util( $this->config, $this->appManager, - $this->createMock(IAppData::class) + $this->createMock(IAppData::class), + $this->imageManager ); $this->themingDefaults diff --git a/apps/theming/tests/Themes/DyslexiaFontTest.php b/apps/theming/tests/Themes/DyslexiaFontTest.php index 3e92d03e473..4714d9751f4 100644 --- a/apps/theming/tests/Themes/DyslexiaFontTest.php +++ b/apps/theming/tests/Themes/DyslexiaFontTest.php @@ -68,8 +68,9 @@ class DyslexiaFontTest extends TestCase { $util = new Util( $this->config, - $this->createMock(AppManager::class), - $this->createMock(IAppData::class) + $this->appManager, + $this->createMock(IAppData::class), + $this->imageManager ); $userSession = $this->createMock(IUserSession::class); |