Fix nominatim stubs

This commit is contained in:
Tom Hughes 2018-07-10 18:50:29 +01:00
parent b4106383d9
commit 90d5d062f5
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ class DiaryEntryControllerTest < ActionController::TestCase
# Create the default language for diary entries
create(:language, :code => "en")
# Stub nominatim response for diary entry locations
stub_request(:get, %r{^http://nominatim\.openstreetmap\.org/reverse\?})
stub_request(:get, %r{^https://nominatim\.openstreetmap\.org/reverse\?})
.to_return(:status => 404)
end