X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fprecheck.t;h=974d6a3879d2d0440a56f193f588004b41beca5a;hb=1c910ebd5d088b68fd1cec41285ad62641673845;hp=42592bc271fc0448e0ab49d764b544913efa83c2;hpb=66a26a8c44100fe4be59d82f3600a5c14495d49d;p=public-inbox.git diff --git a/t/precheck.t b/t/precheck.t index 42592bc2..974d6a38 100644 --- a/t/precheck.t +++ b/t/precheck.t @@ -13,19 +13,19 @@ sub do_checks { my $f = Email::Filter->new(data => $s->as_string); ok(PublicInbox::MDA->precheck($f, undef), - "RECIPIENT unset is OK"); + "ORIGINAL_RECIPIENT unset is OK"); my $recipient = 'foo@example.com'; ok(!PublicInbox::MDA->precheck($f, $recipient), - "wrong RECIPIENT rejected"); + "wrong ORIGINAL_RECIPIENT rejected"); $recipient = 'b@example.com'; ok(PublicInbox::MDA->precheck($f, $recipient), - "RECIPIENT in To: is OK"); + "ORIGINAL_RECIPIENT in To: is OK"); $recipient = 'c@example.com'; ok(PublicInbox::MDA->precheck($f, $recipient), - "RECIPIENT in Cc: is OK"); + "ORIGINAL_RECIPIENT in Cc: is OK"); } {