MessagesControllerTest#test_post_new randomly fails (#34169).

Patch by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@20242 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2020-11-04 07:49:42 +00:00
parent a53ac863ce
commit bfdedec0da

View File

@@ -146,10 +146,11 @@ class MessagesControllerTest < Redmine::ControllerTest
assert_mail_body_match 'Message body', mail
end
bcc_email_addresses = mails.map(&:bcc).flatten
# author
assert_equal ['jsmith@somenet.foo'], mails[0].bcc
assert_includes bcc_email_addresses, 'jsmith@somenet.foo'
# project member
assert_equal ['dlopper@somenet.foo'], mails[1].bcc
assert_includes bcc_email_addresses, 'dlopper@somenet.foo'
end
def test_get_edit