From: Shawn M Moore Date: Wed, 8 Aug 2007 23:28:29 +0000 (+0000) Subject: Fix number of tests without Digest::HMA which was causing the CPANTS failures X-Git-Tag: 0_07~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4dcc2ca3818a544e15163d15b25aa301e4174583;p=gitmo%2FMooseX-Storage.git Fix number of tests without Digest::HMA which was causing the CPANTS failures --- diff --git a/t/030_with_checksum.t b/t/030_with_checksum.t index fc655e2..598e22c 100644 --- a/t/030_with_checksum.t +++ b/t/030_with_checksum.t @@ -115,7 +115,7 @@ BEGIN { SKIP: { eval { require Digest::HMAC_SHA1 }; - skip join( " ", "no Digest::HMAC", ( $@ =~ /\@INC/ ? () : do { chomp(my $e = $@); "($e)" } ) ), 14 if $@; + skip join( " ", "no Digest::HMAC", ( $@ =~ /\@INC/ ? () : do { chomp(my $e = $@); "($e)" } ) ), 15 if $@; local $::DEBUG = 1;