X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dfcecb0118cc6d0451f0ffd74aa0e735f97f2d77..6033359bd07e3da09efd2ffe7a2558dbcffbc1c2:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index 421ae8698..7157abf5a 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -255,7 +255,7 @@ module ActiveSupport end def xml_for_node(node) - doc = OSM::API.new.get_xml_doc + doc = OSM::API.new.xml_doc doc.root << xml_node_for_node(node) doc end @@ -277,7 +277,7 @@ module ActiveSupport end def xml_for_way(way) - doc = OSM::API.new.get_xml_doc + doc = OSM::API.new.xml_doc doc.root << xml_node_for_way(way) doc end @@ -308,7 +308,7 @@ module ActiveSupport end def xml_for_relation(relation) - doc = OSM::API.new.get_xml_doc + doc = OSM::API.new.xml_doc doc.root << xml_node_for_relation(relation) doc end