Fixing failing test

This commit is contained in:
blackdwarf 2017-03-15 17:00:52 -07:00
parent 30a872bd80
commit f6ba5c4f34

View file

@ -74,7 +74,7 @@ Advanced Commands:
.ExecuteWithCapturedOutput("help invalid");
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.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);
}