diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 18:16:38 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 18:16:38 +0000 |
commit | 28ae34b68fd07772e28ca7866d12a7ae9b2bfc14 (patch) | |
tree | d7d1f7a0c6b0a216e70f93bc223e39223ec3f367 /test | |
parent | 22bce3517bdc6a835858b1947878fe5ea7fbdf62 (diff) | |
download | redmine-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.rb | 5 |
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 |