]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/changeset_test.rb
Update get/post etc to remove use of deprecated syntax
[rails.git] / test / models / changeset_test.rb
index a5176fa8bf7a351d5cd2ce70cb6b9f1582637a4e..cdb1a8e85c409edab877b94ed42d9f5591be03a2 100644 (file)
@@ -64,10 +64,10 @@ class ChangesetTest < ActiveSupport::TestCase
   def test_from_xml_valid
     # Example taken from the Update section on the API_v0.6 docs on the wiki
     xml = "<osm><changeset><tag k=\"comment\" v=\"Just adding some streetnames and a restaurant\"/></changeset></osm>"
-    assert_nothing_raised(OSM::APIBadXMLError) do
+    assert_nothing_raised do
       Changeset.from_xml(xml, false)
     end
-    assert_nothing_raised(OSM::APIBadXMLError) do
+    assert_nothing_raised do
       Changeset.from_xml(xml, true)
     end
   end