From cbd67f275150e064cd95249f7feb5d1488657516 Mon Sep 17 00:00:00 2001 From: Johan Cwiklinski Date: Fri, 7 Jun 2024 17:12:23 +0200 Subject: [PATCH] Fix tests --- tests/GaletteMaps/tests/units/Coordinates.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/GaletteMaps/tests/units/Coordinates.php b/tests/GaletteMaps/tests/units/Coordinates.php index 468e9d8..4589fb4 100644 --- a/tests/GaletteMaps/tests/units/Coordinates.php +++ b/tests/GaletteMaps/tests/units/Coordinates.php @@ -57,7 +57,7 @@ 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', @@ -65,7 +65,7 @@ public function testCoordinates(): void ], (array)$coords->getCoords($member->id) ); - $this->assertSame( + $this->assertEquals( [ [ 'id_adh' => $member->id,