summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Gilbert <b2gills@gmail.com>2010-12-07 17:07:51 -0600
committerFather Chrysostomos <sprout@cpan.org>2010-12-08 11:16:17 -0800
commit4813d64b92902e7306bfebf4c41e1d24b77aa33d (patch)
tree1ef47d80efec30e1826352f67db1dc8723547a79
parent951af6b5343ac2be493fd6a9672c16f164ea2f7c (diff)
downloadperl-4813d64b92902e7306bfebf4c41e1d24b77aa33d.tar.gz
Replaced '1 while unlink' with 'unlink_all' in t/io/argv.t
-rw-r--r--t/io/argv.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/argv.t b/t/io/argv.t
index d6c895d6cc..8356938d4b 100644
--- a/t/io/argv.t
+++ b/t/io/argv.t
@@ -137,6 +137,6 @@ unlink "Io_argv3.tmp";
**PROG**
END {
- 1 while unlink 'Io_argv1.tmp', 'Io_argv1.tmp_bak',
+ unlink_all 'Io_argv1.tmp', 'Io_argv1.tmp_bak',
'Io_argv2.tmp', 'Io_argv2.tmp_bak', 'Io_argv3.tmp';
}