]> source.dussan.org Git - redmine.git/commitdiff
shorten long line of MailHandlerTest#test_email_with_long_subject_line
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 26 Nov 2020 14:46:05 +0000 (14:46 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 26 Nov 2020 14:46:05 +0000 (14:46 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20496 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/mail_handler_test.rb

index 549edff5bad6e0025e56e3475ae34917de5d70a0..6184235426c37b84707a190d8d83bb912002c65f 100644 (file)
@@ -1227,7 +1227,13 @@ class MailHandlerTest < ActiveSupport::TestCase
   def test_email_with_long_subject_line
     issue = submit_email('ticket_with_long_subject.eml')
     assert issue.is_a?(Issue)
-    assert_equal issue.subject, 'New ticket on a given project with a very long subject line which exceeds 255 chars and should not be ignored but chopped off. And if the subject line is still not long enough, we just add more text. And more text. Wow, this is really annoying. Especially, if you have nothing to say...'[0, 255]
+    str =
+      'New ticket on a given project with a very long subject line' \
+        ' which exceeds 255 chars and should not be ignored but chopped off.' \
+        ' And if the subject line is still not long enough, we just add more text.' \
+        ' And more text. Wow, this is really annoying.' \
+        ' Especially, if you have nothing to say...'
+    assert_equal issue.subject, str[0, 255]
   end
 
   def test_first_keyword_should_be_matched