diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-10-05 15:48:30 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-10-05 15:48:30 +0000 |
commit | b81f6014081145205a8ea4581a2ac84ba1ffe8c4 (patch) | |
tree | 46c6d97582a75000935b0107c27bf04b3c5f479c /test/functional | |
parent | 2cf079be5be882bba8dc1459bae41678e45d1a80 (diff) | |
download | redmine-b81f6014081145205a8ea4581a2ac84ba1ffe8c4.tar.gz redmine-b81f6014081145205a8ea4581a2ac84ba1ffe8c4.zip |
add space after comma to DocumentsControllerTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20131 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/documents_controller_test.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/documents_controller_test.rb b/test/functional/documents_controller_test.rb index 078b95c0f..eed2876f6 100644 --- a/test/functional/documents_controller_test.rb +++ b/test/functional/documents_controller_test.rb @@ -55,7 +55,7 @@ class DocumentsControllerTest < Redmine::ControllerTest assert_response :success assert_select '#content' do # ascending order of DocumentCategory#id. - ['Uncategorized', 'Technical documentation'].each_with_index do |text,idx| + ['Uncategorized', 'Technical documentation'].each_with_index do |text, idx| assert_select "h3:nth-of-type(#{idx + 1})", :text => text end end @@ -69,7 +69,7 @@ class DocumentsControllerTest < Redmine::ControllerTest assert_response :success assert_select '#content' do # descending order of date. - ['2007-03-05', '2007-02-12'].each_with_index do |text,idx| + ['2007-03-05', '2007-02-12'].each_with_index do |text, idx| assert_select "h3:nth-of-type(#{idx + 1})", :text => text end end @@ -83,7 +83,7 @@ class DocumentsControllerTest < Redmine::ControllerTest assert_response :success assert_select '#content' do # ascending order of title. - ['A', 'T'].each_with_index do |text,idx| + ['A', 'T'].each_with_index do |text, idx| assert_select "h3:nth-of-type(#{idx + 1})", :text => text end end @@ -97,7 +97,7 @@ class DocumentsControllerTest < Redmine::ControllerTest assert_response :success assert_select '#content' do # ascending order of author. - ['John Smith', 'Redmine Admin'].each_with_index do |text,idx| + ['John Smith', 'Redmine Admin'].each_with_index do |text, idx| assert_select "h3:nth-of-type(#{idx + 1})", :text => text end end |