summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Gilbert <b2gills@gmail.com>2010-12-07 17:11:23 -0600
committerFather Chrysostomos <sprout@cpan.org>2010-12-08 11:16:47 -0800
commit15f2ab62764ef8f043a58b64905c314b1ba2024c (patch)
treeac7672dda10a0afa2071e43f84a84b2aaa37da06
parentab679d05ccb1664a50b42213788efa5fe66bb433 (diff)
downloadperl-15f2ab62764ef8f043a58b64905c314b1ba2024c.tar.gz
Replaced 'unlink' with 'unlink_all' in t/op/filetest.t
-rw-r--r--t/op/filetest.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/filetest.t b/t/op/filetest.t
index 4659c706db..f56264684f 100644
--- a/t/op/filetest.t
+++ b/t/op/filetest.t
@@ -87,7 +87,7 @@ ok( -f $tempfile );
is( -s $tempfile, 0 );
is( -f -s $tempfile, 0 );
is( -s -f $tempfile, 0 );
-unlink $tempfile;
+unlink_all $tempfile;
# test that _ is a bareword after filetest operators