diff options
-rw-r--r-- | t/901-secure-mail-loop.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/901-secure-mail-loop.t b/t/901-secure-mail-loop.t index bfecb82c7..1431b9fdd 100644 --- a/t/901-secure-mail-loop.t +++ b/t/901-secure-mail-loop.t @@ -7,6 +7,7 @@ use strict; use warnings; use 5.10.1; +use lib qw( . lib local/lib/perl5 ); use Test::More tests => 1; use Crypt::OpenPGP; @@ -15,7 +16,7 @@ my $pubring = new Crypt::OpenPGP::KeyRing(Data => PUBLIC_KEY()); my $pgp = new Crypt::OpenPGP(PubRing => $pubring); { local $SIG{ALRM} = sub { fail("stuck in a loop"); exit; }; - alarm(5); + alarm(60); my $encrypted = $pgp->encrypt( Data => "hello, world", Recipients => "@", |