Skip to content
Snippets Groups Projects
Commit e4bc9ee2 authored by Alex Reisner's avatar Alex Reisner
Browse files

Fix broken test.

Should have been part of 7cb0acc9
parent 7cb0acc9
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ class NominatimTest < GeocoderTestCase ...@@ -37,7 +37,7 @@ class NominatimTest < GeocoderTestCase
def test_host_configuration def test_host_configuration
Geocoder.configure(nominatim: {host: "local.com"}) Geocoder.configure(nominatim: {host: "local.com"})
query = Geocoder::Query.new("Bluffton, SC") query = Geocoder::Query.new("Bluffton, SC")
assert_match %r(http://local\.com), query.url assert_match %r(https://local\.com), query.url
end end
def test_raises_exception_when_over_query_limit def test_raises_exception_when_over_query_limit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment