summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Gilbert <b2gills@gmail.com>2010-12-07 17:08:07 -0600
committerFather Chrysostomos <sprout@cpan.org>2010-12-08 11:16:21 -0800
commit9bf0f160d67aaad9cf4488cfd8ed95d6de39d121 (patch)
treee384e3ace7232c5448f09caec03e126b4a72d0db
parent4813d64b92902e7306bfebf4c41e1d24b77aa33d (diff)
downloadperl-9bf0f160d67aaad9cf4488cfd8ed95d6de39d121.tar.gz
Replaced '1 while unlink' with 'unlink_all' in t/io/fs.t
-rw-r--r--t/io/fs.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/fs.t b/t/io/fs.t
index ee32f63b54..64fcc5b622 100644
--- a/t/io/fs.t
+++ b/t/io/fs.t
@@ -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";
}