diff options
Diffstat (limited to 't/lib/filefind.t')
-rwxr-xr-x | t/lib/filefind.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/lib/filefind.t b/t/lib/filefind.t index 21e29a2d7f..cd2e9771c7 100755 --- a/t/lib/filefind.t +++ b/t/lib/filefind.t @@ -5,9 +5,10 @@ BEGIN { @INC = '../lib'; } -print "1..1\n"; +print "1..2\n"; use File::Find; # hope we will eventually find ourself find(sub { print "ok 1\n" if $_ eq 'filefind.t'; }, "."); +finddepth(sub { print "ok 2\n" if $_ eq 'filefind.t'; }, "."); |