diff --git a/tests/Xamin/HandlebarsTest.php b/tests/Xamin/HandlebarsTest.php index 517549c..978ff50 100644 --- a/tests/Xamin/HandlebarsTest.php +++ b/tests/Xamin/HandlebarsTest.php @@ -454,14 +454,6 @@ class HandlebarsTest extends \PHPUnit_Framework_TestCase $engine->getHelpers()->call('invalid', $engine->loadTemplate(''), new \Handlebars\Context(), '', ''); } - public function testInvalidHelperMustacheStyle() - { - $this->setExpectedException('RuntimeException'); - $loader = new \Handlebars\Loader\StringLoader(); - $engine = new \Handlebars\Handlebars(array('loader' => $loader)); - $engine->render('{{#NOTVALID}}XXX{{/NOTVALID}}', array()); - } - public function testInvalidHelper() { $this->setExpectedException('RuntimeException');