summaryrefslogtreecommitdiffstats
path: root/tests/lib/geo.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/geo.php')
-rw-r--r--tests/lib/geo.php4
1 files 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