From fe554832732fecaa2654dd80e3ca4390cc06f0e3 Mon Sep 17 00:00:00 2001 From: Lukas Forer Date: Tue, 23 Jul 2024 23:16:12 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20in=20=E2=80=98--changedUntil?= =?UTF-8?q?=E2=80=98=20parameter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/askimed/nf/test/commands/RunTestsCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/askimed/nf/test/commands/RunTestsCommand.java b/src/main/java/com/askimed/nf/test/commands/RunTestsCommand.java index e43a7e08..2dc71791 100644 --- a/src/main/java/com/askimed/nf/test/commands/RunTestsCommand.java +++ b/src/main/java/com/askimed/nf/test/commands/RunTestsCommand.java @@ -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)