Responding to PR feedback

This commit is contained in:
blackdwarf 2017-03-15 09:51:07 -07:00
parent d251734170
commit 30a872bd80
2 changed files with 2 additions and 1 deletions

View file

@ -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";

View file

@ -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]