From: Mark Story Date: Wed, 30 Mar 2011 11:32:06 +0000 (-0400) Subject: Fixing use of non-existent method name. X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=bc4d8b32cd226d925d7340b87246919dcabd5b61;p=konrad%2Ftwig.git Fixing use of non-existent method name. --- diff --git a/test/Twig/Tests/integrationTest.php b/test/Twig/Tests/integrationTest.php index 63d49ea..2463bf5 100644 --- a/test/Twig/Tests/integrationTest.php +++ b/test/Twig/Tests/integrationTest.php @@ -53,7 +53,7 @@ class Twig_Tests_IntegrationTest extends PHPUnit_Framework_TestCase try { $template = $twig->loadTemplate('index.twig'); } catch (Twig_Error_Syntax $e) { - $e->setFilename($file); + $e->setTemplateFile($file); throw $e; } catch (Exception $e) {