code cleanup: rubocop: fix Layout/SpaceInsideStringInterpolation in test/functional/issues_controller_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18610 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-10-07 07:21:03 +00:00
parent ff3df17fee
commit 359802ac3b
2 changed files with 1 additions and 2 deletions

View File

@@ -5091,7 +5091,7 @@ class IssuesControllerTest < Redmine::ControllerTest
mail = ActionMailer::Base.deliveries.last
assert_mail_body_match "Status changed from New to Assigned", mail
# subject should contain the new status
assert mail.subject.include?("(#{ IssueStatus.find(2).name })")
assert mail.subject.include?("(#{IssueStatus.find(2).name})")
end
def test_put_update_with_note_only