From 3711da25290d61727a949ade429779095799791d Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Mon, 20 Apr 2020 02:06:35 +0000 Subject: [PATCH] use CGI.unescapeHTML instead of CGI::unescapeHTML in test/test_helper.rb as with previous revision git-svn-id: http://svn.redmine.org/redmine/trunk@19709 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/test_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index eb4838b7d..e9b6f3cb4 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -238,7 +238,7 @@ class ActiveSupport::TestCase end def assert_select_in(text, *args, &block) - d = Nokogiri::HTML(CGI::unescapeHTML(String.new(text))).root + d = Nokogiri::HTML(CGI.unescapeHTML(String.new(text))).root assert_select(d, *args, &block) end -- 2.39.5