summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-09 18:16:38 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-09 18:16:38 +0000
commit28ae34b68fd07772e28ca7866d12a7ae9b2bfc14 (patch)
treed7d1f7a0c6b0a216e70f93bc223e39223ec3f367 /test
parent22bce3517bdc6a835858b1947878fe5ea7fbdf62 (diff)
downloadredmine-28ae34b68fd07772e28ca7866d12a7ae9b2bfc14.tar.gz
redmine-28ae34b68fd07772e28ca7866d12a7ae9b2bfc14.zip
cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelperTest#test_thumbnail_tag
git-svn-id: http://svn.redmine.org/redmine/trunk@19054 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/helpers/application_helper_test.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb
index 299d34e39..9393ba573 100644
--- a/test/helpers/application_helper_test.rb
+++ b/test/helpers/application_helper_test.rb
@@ -1631,9 +1631,10 @@ class ApplicationHelperTest < Redmine::HelperTest
def test_thumbnail_tag
a = Attachment.find(3)
- assert_select_in thumbnail_tag(a),
+ assert_select_in(
+ thumbnail_tag(a),
'a[href=?][title=?] img[src=?]',
- "/attachments/3", "logo.gif", "/attachments/thumbnail/3"
+ "/attachments/3", "logo.gif", "/attachments/thumbnail/3")
end
def test_link_to_project