From 61de07e79c7bd1027dba7d63f5b81e656384a18c Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Mon, 24 Aug 2020 17:04:56 -0700 Subject: [PATCH] test restoring unlink of tmp file in test-eol.t --- t/test-eol.t | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/t/test-eol.t b/t/test-eol.t index 16ded8f3..6364d628 100644 --- a/t/test-eol.t +++ b/t/test-eol.t @@ -130,5 +130,6 @@ Perl::Tidy::perltidy( ok($output, $expected_output, "output file EOLs (UTF8)"); -# Appveyor produces an error if you try to unlink a temp file -##if ( -e $output_filename ) { unlink $output_filename } +# Try to delete the tmpfile; +# Comment this out if it causes a failure at Appveyor +if ( -e $output_filename ) { unlink $output_filename } -- 2.39.5