From: Sven Schöling Date: Tue, 27 May 2014 14:20:49 +0000 (+0200) Subject: t/test.pl: File::Find macht nur dann lstat wenn follow oder follow_fast als option... X-Git-Tag: release-3.2.0beta~437 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=931c8a6320097b9c0f6e7e098d2533b3a70d15db;p=kivitendo-erp.git t/test.pl: File::Find macht nur dann lstat wenn follow oder follow_fast als option gesetzt ist --- diff --git a/t/test.pl b/t/test.pl index d20f01da0..da10840a5 100755 --- a/t/test.pl +++ b/t/test.pl @@ -14,7 +14,7 @@ BEGIN { sub find_files_to_test { my @files; - File::Find::find(sub { push @files, $File::Find::name if (-f _) && m/\.t$/ }, 't'); + File::Find::find(sub { push @files, $File::Find::name if (-f $_) && m/\.t$/ }, 't'); return @files; }