summaryrefslogtreecommitdiffstats
path: root/test/functional
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-10-07 07:21:03 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-10-07 07:21:03 +0000
commit359802ac3b60c45ac3468f8a8ed22d8ad0bac7bb (patch)
treeb2a12b75ecb9b9dfe2b4a727a9a1b0dfeb24a26e /test/functional
parentff3df17fee03a0152a26166c26fc982b02e8b32f (diff)
downloadredmine-359802ac3b60c45ac3468f8a8ed22d8ad0bac7bb.tar.gz
redmine-359802ac3b60c45ac3468f8a8ed22d8ad0bac7bb.zip
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
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/issues_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index 826fd16fc..c19037255 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -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