Changing the host verbosity flag to -d|--diagnostics from -v|--verbosity so that it is not confused with the verbs verbosity flag.

This commit is contained in:
Livar Cunha 2016-12-15 15:13:00 -08:00
parent 22d7a6ede0
commit 5558e5f728
4 changed files with 5 additions and 3 deletions

View file

@ -109,7 +109,7 @@ namespace Microsoft.DotNet.Tests.EndToEnd
new DotnetCommand()
.WithWorkingDirectory(testProjectDirectory)
.ExecuteWithCapturedOutput(
$"-v dependency-tool-invoker -c {configuration} -f netcoreapp1.0 portable")
$"-d dependency-tool-invoker -c {configuration} -f netcoreapp1.0 portable")
.Should().Pass()
.And.HaveStdOutContaining("Hello Portable World!");;
}