Skip to content

Commit

Permalink
Update after review
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Pion committed Nov 28, 2023
1 parent 46d0d97 commit 038c51a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Zonemaster/CLI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ has 'test' => (
isa => 'ArrayRef',
required => 0,
documentation => __(
'Specify one or several test cases to be run. Should be the case-insensitive name of a test module and/or a test case (examples: "Delegation", "delegation01", "Delegation/delegation01"). This switch can be repeated.'
'Specify test case to be run. Should be the case-insensitive name of a test module and/or a test case (examples: "Delegation", "delegation01", "Delegation/delegation01"). This switch can be repeated.'
)
);

Expand Down Expand Up @@ -637,7 +637,7 @@ sub run {
# TODO: in case of invalid input, print a proper error message
# suggesting to use --list-tests for valid choices.
else {
$t =~ s/\/$//;
$t =~ s{/$}{};
Zonemaster::Engine->test_module( $t, $zone );
}
}
Expand Down

0 comments on commit 038c51a

Please sign in to comment.