From db4010d0ddf315ad2214c326fa23a32dc9ca6ae3 Mon Sep 17 00:00:00 2001 From: Anton Maminov Date: Sat, 1 Jun 2024 19:49:09 +0300 Subject: [PATCH] fix specs --- spec/ipapi_spec.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/ipapi_spec.cr b/spec/ipapi_spec.cr index 95c3152..e6a5e7c 100644 --- a/spec/ipapi_spec.cr +++ b/spec/ipapi_spec.cr @@ -7,7 +7,7 @@ describe Ipapi do location = client.locate("50.1.2.3") location.ip.should eq("50.1.2.3") - location.city.should eq("Antelope") + location.city.should eq("Davis") location.region.should eq("California") location.country.should eq("US") end @@ -15,6 +15,6 @@ describe Ipapi do it "#latlong" do latlong = client.latlong("50.1.2.3") - latlong.should eq("38.716900,-121.367700") + latlong.should eq("38.544200,-121.725200") end end