From f59138214735b6e0516b35d62a62a144f9b0a3e1 Mon Sep 17 00:00:00 2001
From: Bernhard Posselt <nukeawhale@gmail.com>
Date: Mon, 29 Oct 2012 21:33:43 +0100
Subject: assert in proper order

---
 tests/lib/template.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/lib/template.php b/tests/lib/template.php
index 27feec13d04..0151ab331d1 100644
--- a/tests/lib/template.php
+++ b/tests/lib/template.php
@@ -31,7 +31,7 @@ class Test_TemplateFunctions extends UnitTestCase {
 		p($htmlString);
 		$result = ob_get_clean();
 
-		$this->assertEqual($result, "&lt;script&gt;alert(&#039;xss&#039;);&lt;/script&gt;");
+		$this->assertEqual("&lt;script&gt;alert(&#039;xss&#039;);&lt;/script&gt;", $result);
 
 		ob_end_clean();
 		$normalString = "This is a good string!";
@@ -39,7 +39,7 @@ class Test_TemplateFunctions extends UnitTestCase {
 		p($normalString);
 		$result = ob_get_clean();
 
-		$this->assertEqual($result, "This is a good string!");
+		$this->assertEqual("This is a good string!", $result);
 
 	}
 
@@ -51,7 +51,7 @@ class Test_TemplateFunctions extends UnitTestCase {
 		print_unescaped($htmlString);
 		$result = ob_get_clean();
 
-		$this->assertEqual($result, $htmlString);
+		$this->assertEqual($htmlString, $result);
 
 		ob_end_clean();
 		$normalString = "This is a good string!";
@@ -59,7 +59,7 @@ class Test_TemplateFunctions extends UnitTestCase {
 		p($normalString);
 		$result = ob_get_clean();
 
-		$this->assertEqual($result, "This is a good string!");
+		$this->assertEqual("This is a good string!", $result);
 
 	}
 
-- 
cgit v1.2.3