From 931c8a6320097b9c0f6e7e098d2533b3a70d15db Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Tue, 27 May 2014 16:20:49 +0200 Subject: [PATCH] t/test.pl: File::Find macht nur dann lstat wenn follow oder follow_fast als option gesetzt ist --- t/test.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1