From 60b575f979c901e15470498f2ecb47439704c3a8 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 2 Oct 2013 21:46:31 +0200 Subject: [PATCH] Revert "fixed some unit tests" This reverts commit 120518d80336efdb1641f9e61f5c2b46d13988de. --- test/Twig/Tests/TemplateTest.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Twig/Tests/TemplateTest.php b/test/Twig/Tests/TemplateTest.php index 876718d..678cba4 100644 --- a/test/Twig/Tests/TemplateTest.php +++ b/test/Twig/Tests/TemplateTest.php @@ -383,7 +383,7 @@ class Twig_Tests_TemplateTest extends PHPUnit_Framework_TestCase $template = new Twig_TemplateTest($this->getMock('Twig_Environment')); $template->callMacro(new Twig_Tests_TemplateWithMacros('my/template', array('date' => array( 'method' => 'getDate', - 'arguments' => array('format' => null, 'template' => null) + 'default_argument_values' => array('format' => null, 'template' => null) ))), 'date', array('d', 'format' => 'H'), array('format' => 1), 1, 1); } @@ -396,7 +396,7 @@ class Twig_Tests_TemplateTest extends PHPUnit_Framework_TestCase $template = new Twig_TemplateTest($this->getMock('Twig_Environment')); $template->callMacro(new Twig_Tests_TemplateWithMacros('my/template', array('date' => array( 'method' => 'getDate', - 'arguments' => array('foo' => 1, 'bar' => 2) + 'default_argument_values' => array('foo' => 1, 'bar' => 2) ))), 'date', array('foo' => 2), array('foo' => 1, 'unknown' => 1), 2, 0); } @@ -409,7 +409,7 @@ class Twig_Tests_TemplateTest extends PHPUnit_Framework_TestCase $template = new Twig_TemplateTest($this->getMock('Twig_Environment')); $template->callMacro(new Twig_Tests_TemplateWithMacros('my/template', array('date' => array( 'method' => 'getDate', - 'arguments' => array() + 'default_argument_values' => array() ))), 'date', array(), array('unknown1' => 1, 'unknown2' => 2), 2, 0); } } -- 1.7.2.5