sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit abebe65b09f21b98e246e2bdf51491bc5fc1edf6
parent 360df630f217a3a85f245d4378c1f98169cad058
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date:   Sat,  7 May 2016 21:41:34 +0200

Test::Execute: return undef explicitly

Diffstat:
Mt/Test/Execute.pm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/Test/Execute.pm b/t/Test/Execute.pm @@ -32,7 +32,7 @@ sub run { ); my @cmd = @{ $args{cmd} }; - return unless @cmd; # no command to run + return undef unless @cmd; # no command to run my ($exit, $input, $test, $expected, $name, $note) = @args{qw/ exit input test expected name note /};