From 07f13dfcb8d0cc44654fd2b9fbca6bd066ec42a8 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 24 Apr 2012 10:36:52 +0200 Subject: [PATCH] fixed typo --- .../Tests/Fixtures/tags/embed/with_extends.test | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/test/Twig/Tests/Fixtures/tags/embed/with_extends.test b/test/Twig/Tests/Fixtures/tags/embed/with_extends.test index e8040bf..cf7953d 100644 --- a/test/Twig/Tests/Fixtures/tags/embed/with_extends.test +++ b/test/Twig/Tests/Fixtures/tags/embed/with_extends.test @@ -9,6 +9,8 @@ {% endblock %} {% block c2 %} + {{ parent() }} + {% embed "foo.twig" %} {% block c1 %} {{ parent() }} @@ -22,7 +24,7 @@ A blockc1base {% endblock %} {% block c2 %} - block2base + blockc2base {% endblock %} B --TEMPLATE(foo.twig)-- @@ -42,6 +44,9 @@ A blockc1base blockc1baseextended + blockc2base + + A block1 -- 1.7.2.5