diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-27 10:47:36 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-27 10:47:36 +0000 |
commit | f680e7f8acc14257bb585ef43a0a0572bdef0bdd (patch) | |
tree | e0fe19b2c70adaf75dd79b46f784c002ffcb9748 /test/functional/groups_controller_test.rb | |
parent | 1ebe9640a6b7a8d06627bb73452955d09cd965e0 (diff) | |
download | redmine-f680e7f8acc14257bb585ef43a0a0572bdef0bdd.tar.gz redmine-f680e7f8acc14257bb585ef43a0a0572bdef0bdd.zip |
Adds routes for group users.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7946 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/groups_controller_test.rb')
-rw-r--r-- | test/functional/groups_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/groups_controller_test.rb b/test/functional/groups_controller_test.rb index ab53f0d95..c28ebbdea 100644 --- a/test/functional/groups_controller_test.rb +++ b/test/functional/groups_controller_test.rb @@ -90,7 +90,7 @@ class GroupsControllerTest < ActionController::TestCase def test_remove_user assert_difference 'Group.find(10).users.count', -1 do - post :remove_user, :id => 10, :user_id => '8' + delete :remove_user, :id => 10, :user_id => '8' end end |