From e7a4ca2b08be64a993ca6343583628e373f78073 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Thu, 11 Sep 2014 09:19:00 -0700 Subject: [PATCH] update MANIFEST and suppress helo test error --- MANIFEST | 3 +++ t/plugin_tests/helo | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/MANIFEST b/MANIFEST index f7a82fe..0d2740d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -207,6 +207,9 @@ t/plugin_tests/sender_permitted_from t/plugin_tests/spamassassin t/plugin_tests/virus/clamdscan t/qpsmtpd-address.t +t/qpsmtpd-smtp.t +t/qpsmtpd-utils.t +t/qpsmtpd.t t/rset.t t/tempstuff.t t/Test/Qpsmtpd.pm diff --git a/t/plugin_tests/helo b/t/plugin_tests/helo index a1c1a60..eb0ca29 100644 --- a/t/plugin_tests/helo +++ b/t/plugin_tests/helo @@ -65,11 +65,11 @@ sub test_invalid_localhost { foreach my $ip ( undef, '', '192.0.99.5' ) { $self->qp->connection->remote_ip(undef); ($err, $why) = $self->invalid_localhost('localhost' ); - ok(!$err, "host: localhost, remote ip: $ip"); + ok(!$err, "host: localhost, invalid remote ip"); $self->qp->connection->remote_ip(undef); ($err, $why) = $self->invalid_localhost('not-localhost'); - ok($err, "host: not-localhost, remote ip: $ip"); + ok($err, "host: not-localhost, invalid remote ip"); }; foreach my $ip (qw/ ::1 127.0.0.1 / ) {