From e4627075293bf8cc69a93b2dea99b7461bc4c802 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Thu, 14 Mar 2024 15:53:00 -0400 Subject: [PATCH] Update geocoding test assertions --- tests/Integration/GeocoderTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Integration/GeocoderTest.php b/tests/Integration/GeocoderTest.php index d056e722..d7c9c552 100644 --- a/tests/Integration/GeocoderTest.php +++ b/tests/Integration/GeocoderTest.php @@ -16,8 +16,8 @@ function geocoding_an_address() $coordinates = $geocoder->geocode('1600 Pennsylvania Ave Washington, DC'); - $this->assertEquals('38.8976633', $coordinates->getLatitude()); - $this->assertEquals('-77.0365739', $coordinates->getLongitude()); + $this->assertEquals('38.8976801', $coordinates->getLatitude()); + $this->assertEquals('-77.0363304', $coordinates->getLongitude()); } /** @test */