diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/Test/Execute.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/Test/Execute.pm b/t/Test/Execute.pm index 26b576a..0d4798f 100755 --- 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 /}; |