Skip to content

Commit

Permalink
Maintenance: Fixed geo ip test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikklein committed Nov 20, 2023
1 parent 3e2dac0 commit 697b028
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec/lib/service/geo_ip_spec.rb
Expand Up @@ -31,11 +31,11 @@
let(:expected_result) do
{
'country_name' => 'Switzerland',
'city_name' => 'Effretikon',
'city_name' => 'Amriswil',
'country_code' => 'CH',
'continent_code' => 'EU',
'latitude' => 47.4255,
'longitude' => 8.6909,
'latitude' => 47.5465,
'longitude' => 9.2901,
}
end

Expand Down Expand Up @@ -79,11 +79,11 @@
let(:expected_result) do
{
'country_name' => 'United States',
'city_name' => 'Berkeley',
'city_name' => 'Richmond',
'country_code' => 'US',
'continent_code' => 'NA',
'latitude' => 37.8736,
'longitude' => -122.257,
'latitude' => 37.9387,
'longitude' => -122.3661,
}
end

Expand Down

0 comments on commit 697b028

Please sign in to comment.