Skip to content

Commit ed4cde7

Browse files
committed
Fix TestKernel paths
1 parent 696106e commit ed4cde7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Symfony/TestCase/Fixtures/TestKernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ public function registerBundles()
1919

2020
public function getCacheDir()
2121
{
22-
return \sys_get_temp_dir().'ZalasPHPUnitInjector/cache/'.$this->environment;
22+
return \sys_get_temp_dir().'/ZalasPHPUnitInjector/cache/'.$this->environment;
2323
}
2424

2525
public function getLogDir()
2626
{
27-
return \sys_get_temp_dir().'ZalasPHPUnitInjector/logs';
27+
return \sys_get_temp_dir().'/ZalasPHPUnitInjector/logs';
2828
}
2929

3030
/**

0 commit comments

Comments
 (0)