diff options
author | Brad Gilbert <b2gills@gmail.com> | 2010-12-07 17:08:07 -0600 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-12-08 11:16:21 -0800 |
commit | 9bf0f160d67aaad9cf4488cfd8ed95d6de39d121 (patch) | |
tree | e384e3ace7232c5448f09caec03e126b4a72d0db /t/io | |
parent | 4813d64b92902e7306bfebf4c41e1d24b77aa33d (diff) | |
download | perl-9bf0f160d67aaad9cf4488cfd8ed95d6de39d121.tar.gz |
Replaced '1 while unlink' with 'unlink_all' in t/io/fs.t
Diffstat (limited to 't/io')
-rw-r--r-- | t/io/fs.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -424,7 +424,7 @@ SKIP: { # this works on win32 only, because fs isn't casesensitive ok(-e 'X', "rename working"); - 1 while unlink 'X'; + unlink_all 'X'; chdir $wd || die "Can't cd back to $wd"; } |