summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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