fixed copy paste error. 4th test will now test print_unescaped instead of p
This commit is contained in:
parent
aef3c6010b
commit
3ca5927b59
|
@ -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 {
|
|||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue