summaryrefslogtreecommitdiffstats
path: root/test/test_helper.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-04-20 02:06:35 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-04-20 02:06:35 +0000
commit3711da25290d61727a949ade429779095799791d (patch)
treef9ff969b4cad290e971882bb62c4695b47ec1d3c /test/test_helper.rb
parent56af84bf3c7d6cc028e9fd6e3743521e8c8d5e7f (diff)
downloadredmine-3711da25290d61727a949ade429779095799791d.tar.gz
redmine-3711da25290d61727a949ade429779095799791d.zip
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
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb2
1 files changed, 1 insertions, 1 deletions
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