diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm b/Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm index f1817093af0..522194182b8 100644 --- a/Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm +++ b/Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm @@ -12,11 +12,11 @@ TAP::Parser::Scheduler - Schedule tests during parallel testing =head1 VERSION -Version 3.17 +Version 3.23 =cut -$VERSION = '3.17'; +$VERSION = '3.23'; =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; |