Remove quotes from /Logger argument because the argument escaper will do it for me
This commit is contained in:
parent
29bd7bf27a
commit
6a4d49e227
2 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|||
allArgs.Should().NotBeNull();
|
||||
|
||||
allArgs.Should().Contain(
|
||||
value => value.StartsWith("\"/Logger:"),
|
||||
value => value.IndexOf("/Logger", StringComparison.OrdinalIgnoreCase) >= 0,
|
||||
"The MSBuild logger argument should be specified when telemetry is enabled.");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue