From 661d84fc7785d6a330a94b347b6027233f8ebd0d Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Thu, 24 Sep 2020 14:17:08 +0200 Subject: [PATCH] :white_check_mark: ThemeHandlerTest : fix tmp dir clean up --- test/application/ThemeHandlerTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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"); }