summaryrefslogtreecommitdiffstats
path: root/apps/theming/tests/IconBuilderTest.php
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2022-11-08 17:01:17 +0100
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-11-16 09:46:20 +0100
commite6b7fa6cae5b0db1570fda71d5186bec362432a9 (patch)
treea272f18ce0e2d7fcf58aeb55f99e793fbb134684 /apps/theming/tests/IconBuilderTest.php
parent62919ac81eb856a15c0131f3cf948bb11b2a5b1f (diff)
downloadnextcloud-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/IconBuilderTest.php')
-rw-r--r--apps/theming/tests/IconBuilderTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/tests/IconBuilderTest.php b/apps/theming/tests/IconBuilderTest.php
index f4ad5bef4ac..6edd6a05525 100644
--- a/apps/theming/tests/IconBuilderTest.php
+++ b/apps/theming/tests/IconBuilderTest.php
@@ -63,7 +63,7 @@ class IconBuilderTest extends TestCase {
$this->themingDefaults = $this->createMock(ThemingDefaults::class);
$this->appManager = $this->createMock(IAppManager::class);
$this->imageManager = $this->createMock(ImageManager::class);
- $this->util = new Util($this->config, $this->appManager, $this->appData);
+ $this->util = new Util($this->config, $this->appManager, $this->appData, $this->imageManager);
$this->iconBuilder = new IconBuilder($this->themingDefaults, $this->util, $this->imageManager);
}