Fixing broken test

This commit is contained in:
KevBurnsJr
2011-06-13 00:55:31 -07:00
parent a7cf3e7309
commit 25070141a9
+1 -1
View File
@@ -408,7 +408,7 @@ class MustacheTest extends PHPUnit_Framework_TestCase {
public function testStickyDelimiters() {
$m = new Mustache(null, array('result' => 'FAIL'));
$this->assertEquals('{{ result }}', $m->render('{{=[[ ]]=}}{{ result }}[[={{ }}=]]'));
$this->assertEquals('{{ result }}', $m->render('{{=[[ ]]=}}{{#result}}FAIL{{/result}}{{result}}[[={{ }}=]]'));
$this->assertEquals('{{#result}}{{/result}}', $m->render('{{=[[ ]]=}}{{#result}}{{/result}}[[={{ }}=]]'));
}
/**