diff options
author | Brad Gilbert <b2gills@gmail.com> | 2010-12-07 17:11:52 -0600 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-12-08 11:16:50 -0800 |
commit | 4d44d44a1070263051e2e6349db1ced0b358ce44 (patch) | |
tree | af979e5622de6e2bba27c537a47bcf56e34ea686 | |
parent | 15f2ab62764ef8f043a58b64905c314b1ba2024c (diff) | |
download | perl-4d44d44a1070263051e2e6349db1ced0b358ce44.tar.gz |
Replaced 'unlink' with 'unlink_all' in t/op/goto.t
-rw-r--r-- | t/op/goto.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/goto.t b/t/op/goto.t index 12bade9b13..4de47efa5a 100644 --- a/t/op/goto.t +++ b/t/op/goto.t @@ -231,7 +231,7 @@ close $f; $r = runperl(prog => 'use Op_goto01; print qq[DONE\n]'); is($r, "OK\nDONE\n", "goto within use-d file"); -unlink "Op_goto01.pm"; +unlink_all "Op_goto01.pm"; # test for [perl #24108] $ok = 1; |