From 665100b4715cb277a3f308cff149d1f97c0292c7 Mon Sep 17 00:00:00 2001
From: Lukas Reschke <lukas@statuscode.ch>
Date: Thu, 18 Oct 2012 18:34:24 +0300
Subject: [PATCH] Expectation should be first parameter

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

diff --git a/tests/lib/geo.php b/tests/lib/geo.php
index 2b3599ab9b9..bb27f034307 100644
--- a/tests/lib/geo.php
+++ b/tests/lib/geo.php
@@ -10,10 +10,10 @@ class Test_Geo extends UnitTestCase {
 	function testTimezone() {
 		$result = OC_Geo::timezone(3,3);
 		$expected = 'Africa/Porto-Novo';
-		$this->assertEquals($result, $expected);
+		$this->assertEquals($expected, $result);
 
 		$result = OC_Geo::timezone(-3,-3333);
 		$expected = 'Pacific/Enderbury';
-		$this->assertEquals($result, $expected);
+		$this->assertEquals($expected, $result);
 	}
 }
\ No newline at end of file
-- 
GitLab