fixed copy paste error. 4th test will now test print_unescaped instead of p

This commit is contained in:
Bernhard Posselt 2012-10-30 21:20:21 +01:00
parent aef3c6010b
commit 3ca5927b59
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ class Test_TemplateFunctions extends UnitTestCase {
public function testPrintUnescapedNormalString(){
$normalString = "This is a good string!";
ob_start();
p($normalString);
print_unescaped($normalString);
$result = ob_get_clean();
ob_end_clean();
@ -68,4 +68,4 @@ class Test_TemplateFunctions extends UnitTestCase {
}
}
}