From: Steve Hancock Date: Sun, 23 Aug 2020 22:35:33 +0000 (-0700) Subject: unlink tmpfile when done X-Git-Tag: 20200907~42 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=98cc8a7eedac03972a38649e1d29b4547efdfeea;p=perltidy.git unlink tmpfile when done --- diff --git a/t/test-eol.t b/t/test-eol.t index 65188cca..7fe3ba77 100644 --- a/t/test-eol.t +++ b/t/test-eol.t @@ -129,3 +129,5 @@ Perl::Tidy::perltidy( } ok($output, $expected_output, "output file EOLs (UTF8)"); + +if ( -e $output_filename ) { unlink $output_filename }