diff --git a/apps/theming/tests/Settings/PersonalTest.php b/apps/theming/tests/Settings/PersonalTest.php index 043b2a2184e6d..d9327eaed8026 100644 --- a/apps/theming/tests/Settings/PersonalTest.php +++ b/apps/theming/tests/Settings/PersonalTest.php @@ -120,15 +120,15 @@ public function testGetForm(string $enforcedTheme, $themesState) { $this->config->expects($this->exactly(2)) ->method('getUserValue') ->willReturnMap([ - ['admin', 'core', 'apporder', '[]'], - ['admin', 'theming', 'force_enable_blur_filter', ''], + ['admin', 'core', 'apporder', '[]', '[]'], + ['admin', 'theming', 'force_enable_blur_filter', '', ''], ]); $this->appManager->expects($this->once()) ->method('getDefaultAppForUser') ->willReturn('forcedapp'); - $this->initialStateService->expects($this->exactly(4)) + $this->initialStateService->expects($this->exactly(5)) ->method('provideInitialState') ->willReturnMap([ ['themes', $themesState],