cleanups for Auth::validate_password commit

one for testing to work again
and one to remove MD5 dependency in Plugin.pm
This commit is contained in:
Matt Simerson 2012-05-08 21:28:57 -04:00 committed by Robert
parent 35e1ce9883
commit ae3fe2e4d5
2 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,6 @@ use strict;
use warnings;
use Qpsmtpd::Constants;
use Digest::HMAC_MD5 qw(hmac_md5_hex);
# more or less in the order they will fire
our @hooks = qw(

View File

@ -1,6 +1,7 @@
package Test::Qpsmtpd;
use strict;
use lib 't';
use lib 'lib';
use Carp qw(croak);
use base qw(Qpsmtpd::SMTP);
use Test::More;