From d6a7b65cbed4412ec891cf1f718eff21f9a1ed8d Mon Sep 17 00:00:00 2001 From: Alex Reisner <alex@alexreisner.com> Date: Fri, 17 Nov 2017 14:28:55 -0500 Subject: [PATCH] Fix: incorrect lookup used in test. --- test/unit/lookups/yandex_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/lookups/yandex_test.rb b/test/unit/lookups/yandex_test.rb index 09be7929..45c4c26c 100644 --- a/test/unit/lookups/yandex_test.rb +++ b/test/unit/lookups/yandex_test.rb @@ -21,7 +21,7 @@ class YandexTest < GeocoderTestCase end def test_yandex_query_url_contains_bbox - lookup = Geocoder::Lookup::Google.new + lookup = Geocoder::Lookup::Yandex.new url = lookup.query_url(Geocoder::Query.new( "Some Intersection", :bounds => [[40.0, -120.0], [39.0, -121.0]] -- GitLab