aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/test_case.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/test_case.rb')
-rw-r--r--actionpack/lib/action_controller/test_case.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb
index 98ed1c2382..c307702f5d 100644
--- a/actionpack/lib/action_controller/test_case.rb
+++ b/actionpack/lib/action_controller/test_case.rb
@@ -684,14 +684,9 @@ module ActionController
private
def document_root_element
- @html_document ||= if @response.content_type =~ /xml$/
- Loofah.xml_document(@response.body)
- else
- Loofah.document(@response.body)
- end.root
+ html_document.root
end
-
def check_required_ivars
# Sanity check for required instance variables so we can give an
# understandable error message.