From ed9e369069191c0800b97b3a0878b31e5d27108e Mon Sep 17 00:00:00 2001 From: Dan Church Date: Mon, 24 Jul 2023 14:07:19 -0500 Subject: [PATCH] CI: Fix unused variables --- t/TestFunctions.pm | 9 --------- 1 file changed, 9 deletions(-) diff --git a/t/TestFunctions.pm b/t/TestFunctions.pm index c930840..8214a65 100644 --- a/t/TestFunctions.pm +++ b/t/TestFunctions.pm @@ -105,15 +105,6 @@ sub prep_tar { sub run_script_capture { my @args = @_; my @cmd = (SCRIPT, @args); - - my $stderr = File::Temp->new( - TMPDIR => 1, - CLEANUP => 1, - ); - my $stdout = File::Temp->new( - TMPDIR => 1, - CLEANUP => 1, - ); my $in = ''; my $child_out = gensym(); my $child_err = gensym();