aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rwxr-xr-xt/Test/Execute.pm2
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 /};