Skip to content

Commit

Permalink
Fix typo in ‘--changedUntil‘ parameter (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor authored Jul 23, 2024
1 parent 7076181 commit 9e49f5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public class RunTestsCommand extends AbstractCommand {
@Option(names = { "--changed-since", "--changedSince"}, description = "Runs tests related to the changes since the provided branch or commit hash", required = false, showDefaultValue = Visibility.ALWAYS)
private String changedSince = null;

@Option(names = { "--changed-until", "--changdUntil"}, description = "Runs tests related to the changes until the provided branch or commit hash", required = false, showDefaultValue = Visibility.ALWAYS)
@Option(names = { "--changed-until", "--changedUntil"}, description = "Runs tests related to the changes until the provided branch or commit hash", required = false, showDefaultValue = Visibility.ALWAYS)
private String changedUntil = null;

@Option(names = { "--coverage"}, description = "Print simple coverage calculation.", required = false, showDefaultValue = Visibility.ALWAYS)
Expand Down

0 comments on commit 9e49f5e

Please sign in to comment.