diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-08-16 09:39:00 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-08-16 09:39:00 +0200 |
commit | 5f3229ed6746825cd50710644ee40e984ca4f049 (patch) | |
tree | 97f5d619cb57261ad623bf7f60a71eb287fc8f0a /apps/theming/tests/ImageManagerTest.php | |
parent | 0ea23cad0eefacf2bad73ce3c50bb659480e3f56 (diff) | |
download | nextcloud-server-5f3229ed6746825cd50710644ee40e984ca4f049.tar.gz nextcloud-server-5f3229ed6746825cd50710644ee40e984ca4f049.zip |
Automatically enable plain background if primary colour is set
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/theming/tests/ImageManagerTest.php')
-rw-r--r-- | apps/theming/tests/ImageManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/tests/ImageManagerTest.php b/apps/theming/tests/ImageManagerTest.php index 6a9b77234bb..ead9ca113e6 100644 --- a/apps/theming/tests/ImageManagerTest.php +++ b/apps/theming/tests/ImageManagerTest.php @@ -307,7 +307,7 @@ class ImageManagerTest extends TestCase { foreach ($folders as $index => $folder) { $folder->expects($this->any()) ->method('getName') - ->willReturn($index); + ->willReturn("$index"); } $folders[0]->expects($this->once())->method('delete'); $folders[1]->expects($this->once())->method('delete'); |