Skip to content
Snippets Groups Projects
Commit 3ca5927b authored by Bernhard Posselt's avatar Bernhard Posselt
Browse files

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

parent aef3c601
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment