diff --git a/Makefile.PL b/Makefile.PL index 08ca4ec..6228c5b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -26,11 +26,11 @@ my %WriteMakefile_args = ( 'dynamic_config' => 0, 'resources' => { 'license' => ['http://dev.perl.org/licenses/'], - 'bugtracker' => { 'web' => 'https://github.com/Dual-Life/digest/issues' }, + 'bugtracker' => { 'web' => 'https://github.com/Dual-Life/Digest/issues' }, 'repository' => { 'type' => 'git', - 'url' => 'https://github.com/Dual-Life/digest.git', - 'web' => 'https://github.com/Dual-Life/digest', + 'url' => 'https://github.com/Dual-Life/Digest.git', + 'web' => 'https://github.com/Dual-Life/Digest', }, } }, diff --git a/cpanfile b/cpanfile index 30651e1..ad16ccc 100644 --- a/cpanfile +++ b/cpanfile @@ -2,7 +2,7 @@ requires "strict" => "0"; requires "warnings" => "0"; requires "Exporter" => "0"; requires "Carp" => "0"; -requires "Digest::MD5" => "0"; +requires "MIME::Base64" => "0"; on 'test' => sub { requires 'Test::More' => '0'; diff --git a/t/base.t b/t/base.t index 153d4d4..8ec9629 100644 --- a/t/base.t +++ b/t/base.t @@ -65,7 +65,7 @@ is( $ctx->b64digest, $EBCDIC ? "hvDw8PM" : "ZjAwMDM" ); print $fh "abc" x 100, "\n"; close($fh) || die; - open( my $fh2, $tempfile ) || die; + open( my $fh2, "<", $tempfile ) || die; $ctx->addfile($fh2); close($fh2);