remove unneeded literal interpolation from MailHandlerTest

git-svn-id: http://svn.redmine.org/redmine/trunk@19807 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-06-03 16:16:52 +00:00
parent 040b473e55
commit e2a8c53938

View File

@@ -1100,7 +1100,7 @@ class MailHandlerTest < ActiveSupport::TestCase
assert_issue_created(issue)
assert issue.description.include?('This paragraph is before delimiters')
assert issue.description.include?('--- This line starts with a delimiter')
assert !issue.description.match(/^---#{"\u00A0"}$/)
assert !issue.description.match(/^---\u00A0$/)
assert !issue.description.include?('This paragraph is after the delimiter')
end
end