[TwigBundle] fix tests

This commit is contained in:
Christian Flothmann 2018-04-20 11:14:37 +02:00
parent 306c5992ec
commit 468533e18f

View File

@ -45,6 +45,7 @@ class ConfigurationTest extends TestCase
public function testGlobalsAreNotNormalized()
{
$input = array(
'strict_variables' => false, // to be removed in 5.0 relying on default
'globals' => array('some-global' => true),
);
@ -57,6 +58,7 @@ class ConfigurationTest extends TestCase
public function testArrayKeysInGlobalsAreNotNormalized()
{
$input = array(
'strict_variables' => false, // to be removed in 5.0 relying on default
'globals' => array('global' => array('some-key' => 'some-value')),
);