@@ -, +, @@ --- t/Koha/Email.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/t/Koha/Email.t +++ a/t/Koha/Email.t @@ -51,7 +51,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' ); @@ -78,7 +78,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" ); --