test/test_helper.rb in asciidoctor-1.5.6.1 vs test/test_helper.rb in asciidoctor-1.5.6.2

- old
+ new

@@ -143,16 +143,16 @@ end end def xmldoc_from_string(content) if content.match(RE_XMLNS_ATTRIBUTE) - doc = Nokogiri::XML::Document.parse(content) + Nokogiri::XML::Document.parse(content) elsif !(doctype_match = content.match(RE_DOCTYPE)) - doc = Nokogiri::HTML::DocumentFragment.parse(content) + Nokogiri::HTML::DocumentFragment.parse(content) elsif doctype_match[1].start_with? 'html' - doc = Nokogiri::HTML::Document.parse(content) + Nokogiri::HTML::Document.parse(content) else - doc = Nokogiri::XML::Document.parse(content) + Nokogiri::XML::Document.parse(content) end end def document_from_string(src, opts = {}) assign_default_test_options opts