Expectation should be first parameter

remotes/origin/stable5
Lukas Reschke 13 years ago
parent 08ee2fcf93
commit 665100b471
  1. 4
      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);
}
}
Loading…
Cancel
Save