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

remotes/origin/stable5
Bernhard Posselt 13 years ago
parent aef3c6010b
commit 3ca5927b59
  1. 4
      tests/lib/template.php

@ -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…
Cancel
Save