From 3ca5927b59ea3ef34bf9c6f49405d3263f692198 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 30 Oct 2012 21:20:21 +0100 Subject: [PATCH] fixed copy paste error. 4th test will now test print_unescaped instead of p --- tests/lib/template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/template.php b/tests/lib/template.php index 3f0855de76..dadfdba5e0 100644 --- a/tests/lib/template.php +++ b/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 { } -} \ No newline at end of file +}