diff options
-rw-r--r-- | apps/theming/tests/ThemingDefaultsTest.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php index 445ffd2b0a7..fafa1fd450c 100644 --- a/apps/theming/tests/ThemingDefaultsTest.php +++ b/apps/theming/tests/ThemingDefaultsTest.php @@ -461,6 +461,11 @@ class ThemingDefaultsTest extends TestCase { ['theming', 'disable-user-theming', 'no', 'no'], ['theming', 'color', '', ''], ]); + $this->config + ->expects($this->once()) + ->method('getUserValue') + ->with('user', 'theming', 'background') + ->willReturn(''); $this->assertEquals(BackgroundService::DEFAULT_COLOR, $this->template->getColorPrimary()); } |