diff --git a/test/application/ThemeHandlerTest.php b/test/application/ThemeHandlerTest.php index 07dc8e43e..ab28856b1 100644 --- a/test/application/ThemeHandlerTest.php +++ b/test/application/ThemeHandlerTest.php @@ -27,12 +27,12 @@ class ThemeHandlerTest extends ItopTestCase $this->oCompileCSSServiceMock = $this->createMock('CompileCSSService'); ThemeHandler::mockCompileCSSService($this->oCompileCSSServiceMock); - $this->sTmpDir=$this->tmpdir(); - $aDirsToCleanup[] = $this->sTmpDir; + $this->sTmpDir = $this->tmpdir(); + $this->aDirsToCleanup[] = $this->sTmpDir; $this->recurseMkdir($this->sTmpDir."/branding/themes/basque-red"); - $this->sCssPath = $this->sTmpDir . '/branding/themes/basque-red/main.css'; - $this->sJsonThemeParamFile = $this->sTmpDir . '/branding/themes/basque-red/theme-parameters.json'; + $this->sCssPath = $this->sTmpDir.'/branding/themes/basque-red/main.css'; + $this->sJsonThemeParamFile = $this->sTmpDir.'/branding/themes/basque-red/theme-parameters.json'; $this->recurse_copy(APPROOT."/test/application/theme-handler/expected/css", $this->sTmpDir."/branding/css"); }