summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-10-22 16:06:20 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-10-22 16:06:20 +0000
commitaccab3c7550cf707fb5e49ef64b6116e79dc639c (patch)
tree377ce48e7ec6623bf5c1925627783a4c673deba9 /test
parent05ef7738975647b061000c78b62097f104f8e464 (diff)
downloadredmine-accab3c7550cf707fb5e49ef64b6116e79dc639c.tar.gz
redmine-accab3c7550cf707fb5e49ef64b6116e79dc639c.zip
code cleanup: rubocop: fix Layout/SpaceBeforeComma in test/helpers/application_helper_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18838 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/helpers/application_helper_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb
index be1c60303..a6733f7b0 100644
--- a/test/helpers/application_helper_test.rb
+++ b/test/helpers/application_helper_test.rb
@@ -691,7 +691,7 @@ class ApplicationHelperTest < Redmine::HelperTest
:action => 'revision',
:id => 'subproject1',
:repository_id => r.id,
- :rev => '123' ,
+ :rev => '123',
},
:class => 'changeset', :title => 'test commit')
changeset_link_commit = link_to('abcd',
@@ -700,7 +700,7 @@ class ApplicationHelperTest < Redmine::HelperTest
:action => 'revision',
:id => 'subproject1',
:repository_id => r.id,
- :rev => 'abcd' ,
+ :rev => 'abcd',
},
:class => 'changeset', :title => 'test commit')
to_test = {
@@ -740,7 +740,7 @@ class ApplicationHelperTest < Redmine::HelperTest
with_settings :text_formatting => 'markdown' do
raw = "attachment:image@2x.png should not be parsed in image@2x.png"
- assert_match %r{<p><a class="attachment" href="/attachments/#{attachment.id}">image@2x.png</a> should not be parsed in image@2x.png</p>} ,
+ assert_match %r{<p><a class="attachment" href="/attachments/#{attachment.id}">image@2x.png</a> should not be parsed in image@2x.png</p>},
textilizable(raw, :attachments => [attachment])
end
end