summaryrefslogtreecommitdiffstats
path: root/test/functional/timelog_controller_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-10-05 15:48:06 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-10-05 15:48:06 +0000
commit77e184ad35c472203753ea52c854c68da7ccc56b (patch)
tree61533fe8eabbbd24494ceab3fd9fb707d61acee1 /test/functional/timelog_controller_test.rb
parentee7fe716931fbb62f6ed3af4fe018bfce96862df (diff)
downloadredmine-77e184ad35c472203753ea52c854c68da7ccc56b.tar.gz
redmine-77e184ad35c472203753ea52c854c68da7ccc56b.zip
add space after comma to TimelogControllerTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20128 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/timelog_controller_test.rb')
-rw-r--r--test/functional/timelog_controller_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb
index 50c34e6a9..0f28e2a65 100644
--- a/test/functional/timelog_controller_test.rb
+++ b/test/functional/timelog_controller_test.rb
@@ -866,7 +866,7 @@ class TimelogControllerTest < Redmine::ControllerTest
def test_post_bulk_update_should_redirect_back_using_the_back_url_parameter
@request.session[:user_id] = 2
- post :bulk_update, :params => {:ids => [1,2], :back_url => '/time_entries'}
+ post :bulk_update, :params => {:ids => [1, 2], :back_url => '/time_entries'}
assert_response :redirect
assert_redirected_to '/time_entries'
@@ -874,7 +874,7 @@ class TimelogControllerTest < Redmine::ControllerTest
def test_post_bulk_update_should_not_redirect_back_using_the_back_url_parameter_off_the_host
@request.session[:user_id] = 2
- post :bulk_update, :params => {:ids => [1,2], :back_url => 'http://google.com'}
+ post :bulk_update, :params => {:ids => [1, 2], :back_url => 'http://google.com'}
assert_response :redirect
assert_redirected_to :controller => 'timelog', :action => 'index', :project_id => Project.find(1).identifier
@@ -884,7 +884,7 @@ class TimelogControllerTest < Redmine::ControllerTest
@request.session[:user_id] = 2
Role.find_by_name('Manager').remove_permission! :edit_time_entries
- post :bulk_update, :params => {:ids => [1,2]}
+ post :bulk_update, :params => {:ids => [1, 2]}
assert_response 403
end