Skip to content

Commit

Permalink
D:P: Fix issue GH #70
Browse files Browse the repository at this point in the history
  • Loading branch information
khwilliamson committed Jan 27, 2020
1 parent 33c8490 commit 59edf2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/Devel-PPPort/parts/inc/podtest
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ else {
# Try loading Test::Pod
eval q{
use Test::Pod;
$Test::Pod::VERSION >= 0.95
$Test::Pod::VERSION >= 1.41
or die "Test::Pod version only $Test::Pod::VERSION";
import Test::Pod tests => scalar @pods;
};
$reason = 'Test::Pod >= 0.95 required' if $@;
$reason = 'Test::Pod >= 1.41 required' if $@;
}

if ($reason) {
Expand Down
4 changes: 2 additions & 2 deletions dist/Devel-PPPort/t/podtest.t
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ else {
# Try loading Test::Pod
eval q{
use Test::Pod;
$Test::Pod::VERSION >= 0.95
$Test::Pod::VERSION >= 1.41
or die "Test::Pod version only $Test::Pod::VERSION";
import Test::Pod tests => scalar @pods;
};
$reason = 'Test::Pod >= 0.95 required' if $@;
$reason = 'Test::Pod >= 1.41 required' if $@;
}

if ($reason) {
Expand Down

0 comments on commit 59edf2d

Please sign in to comment.