From 355f802546207c065d844eed2700667a284c922e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 11 Jun 2011 07:52:37 +0200 Subject: [PATCH] [TwigBundle] fixed tests --- .../SecurityBundle/Tests/Functional/app/config/twig.yml | 1 - .../Tests/DependencyInjection/Fixtures/php/full.php | 4 ---- .../Tests/DependencyInjection/Fixtures/xml/full.xml | 2 -- .../Tests/DependencyInjection/Fixtures/yml/full.yml | 3 --- 4 files changed, 10 deletions(-) diff --git a/src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/twig.yml b/src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/twig.yml index e713dd576a..861b1e709f 100644 --- a/src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/twig.yml +++ b/src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/twig.yml @@ -5,4 +5,3 @@ framework: twig: debug: %kernel.debug% strict_variables: %kernel.debug% - extensions: [] diff --git a/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/php/full.php b/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/php/full.php index ff18b45527..5ebfc0141e 100644 --- a/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/php/full.php +++ b/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/php/full.php @@ -6,10 +6,6 @@ $container->loadFromExtension('twig', array( 'MyBundle::form.html.twig', ) ), - 'extensions' => array( - 'twig.extension.debug', - 'twig.extension.text', - ), 'globals' => array( 'foo' => '@bar', 'pi' => 3.14, diff --git a/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/xml/full.xml b/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/xml/full.xml index 6a7ae51130..dacc523d9f 100644 --- a/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/xml/full.xml +++ b/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/xml/full.xml @@ -12,7 +12,5 @@ 3.14 - twig.extension.debug - twig.extension.text diff --git a/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/yml/full.yml b/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/yml/full.yml index ea4c6d1052..ecad2a9f44 100644 --- a/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/yml/full.yml +++ b/src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/yml/full.yml @@ -2,9 +2,6 @@ twig: form: resources: - MyBundle::form.html.twig - extensions: - - twig.extension.debug - - twig.extension.text globals: foo: @bar pi: 3.14