Skip to content

Commit

Permalink
Builtin function called with parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
gul4rt committed Nov 29, 2024
1 parent 85a9877 commit bb36628
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Helper.t
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ subtest 'Helper' => sub {

my $options_debug = "Options found:\n";
for my $option (@expected_options) {
$options_debug .= sprintf("%s: %s\n", $option, $helper_output =~ m/\Q$option\E/x ? "Yes" : "No");
$options_debug .= sprintf "%s: %s\n", $option, $helper_output =~ m/\Q$option\E/x ? "Yes" : "No";
}
diag $options_debug;
pass('Printed debug information about options');
};

done_testing();

1;
1;

0 comments on commit bb36628

Please sign in to comment.