diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-01 00:11:02 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-01 00:11:02 +0000 |
commit | 10f66e425e887cf11a79f5aec539d02ec838462e (patch) | |
tree | 3c3790f7037cf79ecc371a339c59a262d57ac38c | |
parent | f96d7ce8e0cfc2d13d3c446eda048ad98d53439d (diff) | |
download | redmine-10f66e425e887cf11a79f5aec539d02ec838462e.tar.gz redmine-10f66e425e887cf11a79f5aec539d02ec838462e.zip |
Fix annotate functional roles_controller_test.rb due fails to changing en.yml (#8035, #7855).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5269 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/functional/roles_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/roles_controller_test.rb b/test/functional/roles_controller_test.rb index 810cafda8..e132f30d9 100644 --- a/test/functional/roles_controller_test.rb +++ b/test/functional/roles_controller_test.rb @@ -114,7 +114,7 @@ class RolesControllerTest < ActionController::TestCase def test_destroy_role_in_use post :destroy, :id => 1 assert_redirected_to '/roles' - assert flash[:error] == 'This role is in use and can not be deleted.' + assert flash[:error] == 'This role is in use and cannot be deleted.' assert_not_nil Role.find_by_id(1) end |