From a666cfd173739bf0814ca695755a4bb97a4b8214 Mon Sep 17 00:00:00 2001
From: Joe Francis <joe@lostapathy.com>
Date: Tue, 13 Feb 2018 12:18:06 -0600
Subject: [PATCH] ruby 2.5 changes behavior of CGI.escape

See https://github.com/ruby/ruby/commit/e1b432754553423008a14d39d0901eabc99e7ddb
---
 test/unit/lookups/yandex_test.rb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/test/unit/lookups/yandex_test.rb b/test/unit/lookups/yandex_test.rb
index 45c4c26c..b4ca2094 100644
--- a/test/unit/lookups/yandex_test.rb
+++ b/test/unit/lookups/yandex_test.rb
@@ -26,6 +26,10 @@ class YandexTest < GeocoderTestCase
       "Some Intersection",
       :bounds => [[40.0, -120.0], [39.0, -121.0]]
     ))
-    assert_match(/bbox=40.0+%2C-120.0+%7E39.0+%2C-121.0+/, url)
+    if RUBY_VERSION < '2.5.0'
+      assert_match(/bbox=40.0+%2C-120.0+%7E39.0+%2C-121.0+/, url)
+    else
+      assert_match(/bbox=40.0+%2C-120.0+~39.0+%2C-121.0+/, url)
+    end
   end
 end
-- 
GitLab