diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-20 20:43:28 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-20 20:43:28 +0000 |
commit | aca31973c28110047efd30537d5266b4c8987080 (patch) | |
tree | a107a050b2678f9dec581658c21807806406f50f /test/integration | |
parent | f8c649320f849dec288407a771d446108dc40931 (diff) | |
download | redmine-aca31973c28110047efd30537d5266b4c8987080.tar.gz redmine-aca31973c28110047efd30537d5266b4c8987080.zip |
Fixed that delete watcher link was broken by r11290 (#13231).
Deleting a watcher now use DELETE /watchers instead of POST /watchers/destroy.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11443 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/routing/watchers_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/routing/watchers_test.rb b/test/integration/routing/watchers_test.rb index 39ef5a786..eb6a62163 100644 --- a/test/integration/routing/watchers_test.rb +++ b/test/integration/routing/watchers_test.rb @@ -32,7 +32,7 @@ class RoutingWatchersTest < ActionController::IntegrationTest { :controller => 'watchers', :action => 'create' } ) assert_routing( - { :method => 'post', :path => "/watchers/destroy" }, + { :method => 'delete', :path => "/watchers" }, { :controller => 'watchers', :action => 'destroy' } ) assert_routing( |