summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Gilbert <b2gills@gmail.com>2010-12-07 17:13:57 -0600
committerFather Chrysostomos <sprout@cpan.org>2010-12-08 11:17:18 -0800
commit5fd6a57810f7439389bf02856e9156c3525cf159 (patch)
tree53af48df54a0dde044e4289e55a1f88ba5d09950
parentc291be4e4b7fb37889d8d8cd3e85082e09c1a5c0 (diff)
downloadperl-5fd6a57810f7439389bf02856e9156c3525cf159.tar.gz
Replaced 'unlink' with 'unlink_all' in t/op/sysio.t
-rw-r--r--t/op/sysio.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/sysio.t b/t/op/sysio.t
index d0f71ae492..ba739f2ff9 100644
--- a/t/op/sysio.t
+++ b/t/op/sysio.t
@@ -209,7 +209,7 @@ ok(not defined sysseek(I, -1, 1));
close(I);
-unlink $outfile;
+unlink_all $outfile;
# Check that utf8 IO doesn't upgrade the scalar
open(I, ">$outfile") || die "sysio.t: cannot write $outfile: $!";
@@ -232,7 +232,7 @@ eval {syswrite I, 2;};
is($@, '');
close(I);
-unlink $outfile;
+unlink_all $outfile;
chdir('..');