1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-08 16:41:31 +00:00

cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelperTest link_to_if_authorized

git-svn-id: http://svn.redmine.org/redmine/trunk@19033 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-09 16:33:22 +00:00
parent 9a76c58688
commit 9d210a3b94

View File

@ -44,8 +44,9 @@ class ApplicationHelperTest < Redmine::HelperTest
User.current = User.find_by_login('admin')
@project = Issue.first.project # Used by helper
response = link_to_if_authorized('By controller/actionr',
{:controller => 'issues', :action => 'edit', :id => Issue.first.id})
response = link_to_if_authorized(
'By controller/actionr',
{:controller => 'issues', :action => 'edit', :id => Issue.first.id})
assert_match /href/, response
end
@ -54,9 +55,9 @@ class ApplicationHelperTest < Redmine::HelperTest
@project = Project.find('private-child')
issue = @project.issues.first
assert !issue.visible?
response = link_to_if_authorized('Never displayed',
{:controller => 'issues', :action => 'show', :id => issue})
response = link_to_if_authorized(
'Never displayed',
{:controller => 'issues', :action => 'show', :id => issue})
assert_nil response
end