We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35091b1 commit fcd6ec2Copy full SHA for fcd6ec2
src/Symfony/Bundle/TwigBundle/Tests/Functional/CacheWarmingTest.php
@@ -72,7 +72,7 @@ public function __construct($withTemplating)
72
{
73
$this->withTemplating = $withTemplating;
74
75
- parent::__construct('dev', true);
+ parent::__construct(($withTemplating ? 'with' : 'without').'_templating', true);
76
}
77
78
public function getName()
@@ -106,7 +106,7 @@ public function registerContainerConfiguration(LoaderInterface $loader)
106
107
public function getCacheDir()
108
109
- return sys_get_temp_dir().'/'.Kernel::VERSION.'/CacheWarmingKernel/cache';
+ return sys_get_temp_dir().'/'.Kernel::VERSION.'/CacheWarmingKernel/cache/'.$this->environment;
110
111
112
public function getLogDir()
0 commit comments