mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
fixed copy paste error. 4th test will now test print_unescaped instead of p
This commit is contained in:
parent
aef3c6010b
commit
3ca5927b59
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue