Skip to content

Commit dfb7369

Browse files
FGaspertoddr
authored andcommitted
Fix a test that errantly created a GLOB(..) file.
1 parent 5d9913d commit dfb7369

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

t/taskqueue_processor_checked_system.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $logger->clear();
4444
open STDERR, '>', '/dev/null' or die "Unable to redirect STDERR: $!";
4545
is( $proc->checked_system( { logger => $logger, name => 'foobarxyzzy', cmd => 'foobarxyzzy' } ), -1, 'Program cannot run' );
4646
is( $logger->get_message, 'WARN:Failed to run foobarxyzzy', 'Warning detected.' );
47-
open STDERR, '>', $olderr;
47+
open STDERR, '>&=', $olderr;
4848
}
4949

5050
$logger->clear();

0 commit comments

Comments
 (0)