git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-05-27 15:15:54 +00:00
Родитель dc4fa2f229
Коммит 36276b6f40
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -249,7 +249,7 @@ module REXMLTests
assert_instance_of DocType, doc.doctype
assert_equal doc.version, "1.0"
doc = File.open(fixture_path("dash.xml")) {|source| Document.new source }
doc = File.open(fixture_path("dash.xml")) {|s| Document.new s }
assert_equal "content-2", doc.elements["//content-2"].name
end