From 4ef21d1590f967f3b89ceb7db0206b9997338a1b Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 23 Mar 2021 11:14:37 -0300 Subject: [PATCH] Bug 28023: Regression tests Signed-off-by: Tomas Cohen Arazi --- t/Koha/Email.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/Koha/Email.t b/t/Koha/Email.t index 752269341f8..7879fecf860 100755 --- a/t/Koha/Email.t +++ b/t/Koha/Email.t @@ -53,7 +53,7 @@ subtest 'create() tests' => sub { is( $email->email->header('To'), 'to@example.com', 'Value set correctly' ); is( $email->email->header('Cc'), 'cc@example.com', 'Value set correctly' ); is( $email->email->header('Bcc'), 'bcc@example.com', 'Value set correctly' ); - is( $email->email->header('ReplyTo'), 'reply_to@example.com', 'Value set correctly' ); + is( $email->email->header('Reply-To'), 'reply_to@example.com', 'Value set correctly' ); is( $email->email->header('Sender'), 'sender@example.com', 'Value set correctly' ); is( $email->email->header('Subject'), 'Some subject', 'Value set correctly' ); is( $email->email->header('X-Mailer'), 'Koha', 'Value set correctly' ); @@ -80,7 +80,7 @@ subtest 'create() tests' => sub { is( $email->email->header('To'), 'catchall@example.com', 'SendAllEmailsTo overloads any address' ); is( $email->email->header('Cc'), undef, 'SendAllEmailsTo overloads any address' ); is( $email->email->header('Bcc'), undef, 'SendAllEmailsTo overloads any address' ); - is( $email->email->header('ReplyTo'), 'replytodefault@example.com', 'ReplytoDefault picked when replyto not passed' ); + is( $email->email->header('Reply-To'), 'replytodefault@example.com', 'ReplytoDefault picked when replyto not passed' ); is( $email->email->header('Sender'), 'returnpathdefault@example.com', 'ReturnpathDefault picked when sender not passed' ); is( $email->email->header('Subject'), '', 'No subject passed, empty string' ); is( $email->email->body, $text_body, "Body set correctly" ); -- 2.31.0