Chore: Changed from email and reply to email for conversation email (#444)

This commit is contained in:
Sony Mathew
2020-01-24 14:10:52 +05:45
committed by Pranav Raj S
parent d4b3ba4baa
commit 04d347f0ee
2 changed files with 3 additions and 3 deletions

View File

@@ -23,8 +23,8 @@ RSpec.describe ConversationMailer, type: :mailer do
expect(mail.to).to eq([message&.conversation&.contact&.email])
end
it 'renders the sender email' do
expect(mail.from).to eq([message&.conversation&.assignee&.email])
it 'renders the reply to email' do
expect(mail.reply_to).to eq([message&.conversation&.assignee&.email])
end
end
end