Remove quotes from /Logger argument because the argument escaper will do it for me

This commit is contained in:
Jeff Kluge 2016-11-02 14:43:21 -07:00
parent 29bd7bf27a
commit 6a4d49e227
2 changed files with 2 additions and 2 deletions

View file

@ -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.");
}