Skip to content

Commit

Permalink
Maintenance: Fix GeoIP test.
Browse files Browse the repository at this point in the history
(cherry picked from commit 1ad12b4)

1ad12b4 Maintenance: Fix GeoIP test.
  • Loading branch information
mgruner committed Mar 11, 2024
1 parent 077dce2 commit 11395d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/lib/service/geo_ip_spec.rb
Expand Up @@ -46,7 +46,7 @@
let(:expected_result) do
{
'country_name' => 'Germany',
'city_name' => 'Chemnitz',
'city_name' => be_present,
'country_code' => 'DE',
'continent_code' => 'EU',
'latitude' => be_a(Float),
Expand All @@ -62,7 +62,7 @@
let(:expected_result) do
{
'country_name' => 'Germany',
'city_name' => 'Halle',
'city_name' => be_present,
'country_code' => 'DE',
'continent_code' => 'EU',
'latitude' => be_a(Float),
Expand All @@ -78,7 +78,7 @@
let(:expected_result) do
{
'country_name' => 'United States',
'city_name' => 'Richmond',
'city_name' => be_present,
'country_code' => 'US',
'continent_code' => 'NA',
'latitude' => be_a(Float),
Expand Down

0 comments on commit 11395d4

Please sign in to comment.