diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/cache_app_redis_tag_aware_pool.php b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/cache_app_redis_tag_aware_pool.php
index 89beceb5748a4..bf3ee2de2b357 100644
--- a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/cache_app_redis_tag_aware_pool.php
+++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/cache_app_redis_tag_aware_pool.php
@@ -2,14 +2,11 @@
$container->loadFromExtension('framework', [
'cache' => [
- 'app' => 'cache.redis_tag_aware.bar',
+ 'app' => 'cache.redis_tag_aware.foo',
'pools' => [
'cache.redis_tag_aware.foo' => [
'adapter' => 'cache.adapter.redis_tag_aware',
],
- 'cache.redis_tag_aware.bar' => [
- 'adapter' => 'cache.redis_tag_aware.foo',
- ],
],
],
]);
diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/cache_app_redis_tag_aware_pool.xml b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/cache_app_redis_tag_aware_pool.xml
index 063e51810ef07..65c06a1da6df7 100644
--- a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/cache_app_redis_tag_aware_pool.xml
+++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/cache_app_redis_tag_aware_pool.xml
@@ -7,9 +7,8 @@
- -+ {% set htmlBody = message.htmlBody() %} + {% if htmlBody is not null %} +
+ ++
- {%- if message.htmlCharset() %} - {{- message.htmlBody()|convert_encoding('UTF-8', message.htmlCharset()) }} - {%- else %} - {{- message.htmlBody() }} - {%- endif -%} -+
+ {%- if message.htmlCharset() %} + {{- htmlBody|convert_encoding('UTF-8', message.htmlCharset()) }} + {%- else %} + {{- htmlBody }} + {%- endif -%} ++
- {%- if message.textCharset() %} - {{- message.textBody()|convert_encoding('UTF-8', message.textCharset()) }} - {%- else %} - {{- message.textBody() }} - {%- endif -%} -+ {% endif %} + {% set textBody = message.textBody() %} + {% if textBody is not null %} +
+ {%- if message.textCharset() %} + {{- textBody|convert_encoding('UTF-8', message.textCharset()) }} + {%- else %} + {{- textBody }} + {%- endif -%} ++