diff options
Diffstat (limited to 'cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm')
-rw-r--r-- | cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm b/cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm index f1817093af..c23f1eac64 100644 --- a/cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm +++ b/cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm @@ -12,11 +12,11 @@ TAP::Parser::Scheduler - Schedule tests during parallel testing =head1 VERSION -Version 3.17 +Version 3.21 =cut -$VERSION = '3.17'; +$VERSION = '3.21'; =head1 SYNOPSIS @@ -231,7 +231,7 @@ sub get_job { sub _not_empty { my $ar = shift; return 1 unless 'ARRAY' eq ref $ar; - foreach (@$ar) { + for (@$ar) { return 1 if _not_empty($_); } return; |