Changing dotnet-test options (#4987)
In Preview 3, the `dotnet test` options were not aligned with the CLI's adopted format. This PR changes the options to be aligned. Where possible/applicable, I have shortened the long options to a meaningful mnemonic short version. Fixes #4960
This commit is contained in:
parent
1a49787a1f
commit
d335b5de40
3 changed files with 8 additions and 8 deletions
|
@ -91,7 +91,7 @@ namespace Microsoft.DotNet.Cli.Test.Tests
|
|||
// Call test
|
||||
CommandResult result = new DotnetTestCommand()
|
||||
.WithWorkingDirectory(testProjectDirectory)
|
||||
.ExecuteWithCapturedOutput("--noBuild");
|
||||
.ExecuteWithCapturedOutput("--no-build");
|
||||
|
||||
// Verify
|
||||
result.StdOut.Should().Contain(expectedError);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue