From: Marc Abramowitz Date: Wed, 23 Feb 2011 22:58:01 +0000 (-0800) Subject: Correct spelling error (in 3 places): "unkown" -> "unknown" X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=081b26c366bffd7fae8e14262266fe819c462253;p=web%2Fkonrad%2Ftwig.git Correct spelling error (in 3 places): "unkown" -> "unknown" --- diff --git a/test/Twig/Tests/TemplateTest.php b/test/Twig/Tests/TemplateTest.php index c99a1e1..5e90ba8 100644 --- a/test/Twig/Tests/TemplateTest.php +++ b/test/Twig/Tests/TemplateTest.php @@ -10,7 +10,7 @@ */ class Twig_Tests_TemplateTest extends PHPUnit_Framework_TestCase { - public function getUnkownPropertyOnArrayTests() + public function getUnknownPropertyOnArrayTests() { $tests = array( array(array('foo' => 'foo', 'bar' => 'value')), @@ -21,10 +21,10 @@ class Twig_Tests_TemplateTest extends PHPUnit_Framework_TestCase } /** - * @dataProvider getUnkownPropertyOnArrayTests + * @dataProvider getUnknownPropertyOnArrayTests * @expectedException Twig_Error_Runtime */ - public function testUnkownPropertyOnArray($array) + public function testUnknownPropertyOnArray($array) { $env = new Twig_Environment(null, array('strict_variables' => true)); $template = new Twig_TemplateTest($env);