X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/321f8cecdc8044625a8951cbcdd94c6c1c8f83f5..70448559b2c665f45d1716c30e7ae39e3226534b:/test/functional/changeset_controller_test.rb diff --git a/test/functional/changeset_controller_test.rb b/test/functional/changeset_controller_test.rb index 05f2ff569..7a4d2e4f8 100644 --- a/test/functional/changeset_controller_test.rb +++ b/test/functional/changeset_controller_test.rb @@ -45,7 +45,7 @@ class ChangesetControllerTest < ActionController::TestCase ) assert_routing( { :path => "/user/name/edits/feed", :method => :get }, - { :controller => "changeset", :action => "feed", :display_name => "name", :format => :atom } + { :controller => "changeset", :action => "feed", :display_name => "name" } ) assert_routing( { :path => "/browse/friends", :method => :get }, @@ -61,7 +61,7 @@ class ChangesetControllerTest < ActionController::TestCase ) assert_routing( { :path => "/browse/changesets/feed", :method => :get }, - { :controller => "changeset", :action => "feed", :format => :atom } + { :controller => "changeset", :action => "feed" } ) assert_recognizes( { :controller => "changeset", :action => "list" }, @@ -72,7 +72,7 @@ class ChangesetControllerTest < ActionController::TestCase { :path => "/history", :method => :get } ) assert_recognizes( - { :controller => "changeset", :action => "feed", :format => :atom }, + { :controller => "changeset", :action => "feed" }, { :path => "/history/feed", :method => :get } ) end