From 0d3ddd9e11eeafbc51d95e20226117bc3424bcaf Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Thu, 24 Apr 2014 15:34:09 +0200 Subject: [PATCH] Remove redundant test case for non-HTML string. --- tests/lib/template.php | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tests/lib/template.php b/tests/lib/template.php index b3d0975b79..40aec40234 100644 --- a/tests/lib/template.php +++ b/tests/lib/template.php @@ -39,7 +39,9 @@ class Test_TemplateFunctions extends PHPUnit_Framework_TestCase { p($badString); $result = ob_get_clean(); $this->assertEquals('<script>alert('Hacked!');</script>', $result); + } + public function testPNormalString() { $goodString = 'This is a good string without HTML.'; ob_start(); p($goodString); @@ -47,15 +49,6 @@ class Test_TemplateFunctions extends PHPUnit_Framework_TestCase { $this->assertEquals('This is a good string without HTML.', $result); } - public function testPNormalString() { - $normalString = "This is a good string!"; - ob_start(); - p($normalString); - $result = ob_get_clean(); - - $this->assertEquals("This is a good string!", $result); - } - public function testPrintUnescaped() { $htmlString = "";