Responding to PR feedback
This commit is contained in:
parent
d251734170
commit
30a872bd80
2 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,7 @@ namespace Microsoft.DotNet.Tools.Help
|
|||
|
||||
public const string SlnDefinition = "Modify solution (SLN) files.";
|
||||
|
||||
public const string CommandDoesNotExist = "Specified command {0} is not a valid CLI command. Please specify a valid CLI commands. For more information, run dotnet help.";
|
||||
public const string CommandDoesNotExist = "Specified command '{0}' is not a valid CLI command. Please specify a valid CLI commands. For more information, run dotnet help.";
|
||||
|
||||
public const string AppFullName = ".NET CLI help utility";
|
||||
|
||||
|
|
|
@ -75,6 +75,7 @@ Advanced Commands:
|
|||
|
||||
cmd.Should().Fail();
|
||||
cmd.StdErr.Should().ContainVisuallySameFragment($"Specified command invalid is not a valid CLI command. Please specify a valid CLI commands. For more information, run dotnet help.");
|
||||
cmd.StdOut.Should().ContainVisuallySameFragment(HelpText);
|
||||
}
|
||||
|
||||
[WindowsOnlyFact]
|
||||
|
|
Loading…
Add table
Reference in a new issue