revert useless tests fixtures changes

This will revert #25847. Basically, the changes done in #25847 were not
wrong per se. However, those changes were not necessary as the tests
were not failing because of the missing "assets" config, but due to an
issue introduced in the Config component. Furthermore, removing this
part of the config fixtures gives us the benefit that our before
normalization logic that enables assets support when the templating
integration is enabled is properly tested.
This commit is contained in:
Christian Flothmann 2018-01-22 14:11:18 +01:00
parent fa7b76059f
commit fb1be51a5c
3 changed files with 0 additions and 6 deletions

View File

@ -1,9 +1,6 @@
<?php
$container->loadFromExtension('framework', array(
'assets' => array(
'enabled' => true,
),
'templating' => array(
'engines' => array('php', 'twig'),
),

View File

@ -6,7 +6,6 @@
http://symfony.com/schema/dic/symfony http://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
<framework:config>
<framework:assets enabled="true" />
<framework:templating>
<framework:engine>php</framework:engine>
<framework:engine>twig</framework:engine>

View File

@ -1,5 +1,3 @@
framework:
assets:
enabled: true
templating:
engines: [php, twig]