aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-10-30 21:20:21 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2012-10-30 21:20:21 +0100
commit3ca5927b59ea3ef34bf9c6f49405d3263f692198 (patch)
treec3338dee1bd7586334907e00035f7580effe6292 /tests
parentaef3c6010b187a3e2fc018f5854770aef5f5c16a (diff)
downloadnextcloud-server-3ca5927b59ea3ef34bf9c6f49405d3263f692198.tar.gz
nextcloud-server-3ca5927b59ea3ef34bf9c6f49405d3263f692198.zip
fixed copy paste error. 4th test will now test print_unescaped instead of p
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/template.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/template.php b/tests/lib/template.php
index 3f0855de76c..dadfdba5e0c 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
+}