Skip to content

Commit 9f1d207

Browse files
committed
Fix a few test command issues
1 parent 1403eb5 commit 9f1d207

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/InEngine.Core/Commands/Echo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ namespace InEngine.Core.Commands
99
public class Echo : AbstractCommand
1010
{
1111
[Option("text", HelpText = "The text to echo.")]
12-
public string Text { get; set; }
12+
public string VerbatimText { get; set; }
1313

1414
public override void Run()
1515
{
16-
Write.Line(Text);
16+
Write.Line(VerbatimText);
1717
}
1818
}
1919
}

src/InEngine.Core/Commands/Options.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ namespace InEngine.Core.Commands
55
{
66
public class Options : IOptions
77
{
8-
[VerbOption("null", HelpText = "Always fail. Useful for end-to-end testing.")]
8+
[VerbOption("fail", HelpText = "Always fail. Useful for end-to-end testing.")]
99
public AlwaysFail AlwaysFail { get; set; }
1010

1111
[VerbOption("echo", HelpText= "Echo some text to the console. Useful for end-to-end testing.")]
1212
public Echo Echo { get; set; }
1313

14-
[VerbOption("null", HelpText = "A null operation command. Literally does nothing.")]
14+
[VerbOption("succeed", HelpText = "A null operation command. Literally does nothing.")]
1515
public AlwaysSucceed Null { get; set; }
1616

1717
public string GetUsage(string verb)

0 commit comments

Comments
 (0)