diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-06-15 04:36:36 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-06-15 04:36:36 +0000 |
commit | ef754487c3288e4d3f0ee7f28038d00b12840bea (patch) | |
tree | 30da325c5e251c017e58ec9bb6259daf21bffa76 /test/functional/trackers_controller_test.rb | |
parent | ce9edd07e35d5999473f62e5847810fbffb4c1ab (diff) | |
download | redmine-ef754487c3288e4d3f0ee7f28038d00b12840bea.tar.gz redmine-ef754487c3288e4d3f0ee7f28038d00b12840bea.zip |
remove trailing white spaces from test/functional/trackers_controller_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@16664 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/trackers_controller_test.rb')
-rw-r--r-- | test/functional/trackers_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/trackers_controller_test.rb b/test/functional/trackers_controller_test.rb index 80ee10a69..5d878c92a 100644 --- a/test/functional/trackers_controller_test.rb +++ b/test/functional/trackers_controller_test.rb @@ -30,13 +30,13 @@ class TrackersControllerTest < Redmine::ControllerTest assert_response :success assert_select 'table.trackers' end - + def test_index_by_anonymous_should_redirect_to_login_form @request.session[:user_id] = nil get :index assert_redirected_to '/login?back_url=http%3A%2F%2Ftest.host%2Ftrackers' end - + def test_index_by_user_should_respond_with_406 @request.session[:user_id] = 2 get :index |