Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
trasher committed Jun 7, 2024
1 parent ee24a1b commit cbd67f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/GaletteMaps/tests/units/Coordinates.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ public function testCoordinates(): void

//set coordinates for member one
$this->assertTrue($coords->setCoords($member->id, 50.362038,3.472998));
$this->assertSame(
$this->assertEquals(
[
'id_adh' => $member->id,
'latitude' => '50.362038',
'longitude' => '3.472998'
],
(array)$coords->getCoords($member->id)
);
$this->assertSame(
$this->assertEquals(
[
[
'id_adh' => $member->id,
Expand Down

0 comments on commit cbd67f2

Please sign in to comment.