Hash array formatting

This commit is contained in:
echarp 2018-11-08 21:07:36 +01:00
parent 88c4220332
commit 90570a2b33
1 changed files with 7 additions and 7 deletions

View File

@ -24,13 +24,13 @@ module ActiveSupport
Geocoder.configure lookup: :test
Geocoder::Lookup::Test.set_default_stub [{
'latitude' => 40.7143528,
'longitude' => -74.0059731,
'address' => 'New York, NY, USA',
'state' => 'New York',
'state_code' => 'NY',
'country' => 'United States',
'country_code' => 'US'
latitude: 40.7143528,
longitude: -74.0059731,
address: 'New York, NY, USA',
state: 'New York',
state_code: 'NY',
country: 'United States',
country_code: 'US'
}]
end
end