From cb52224272cda0e148dbd0f88332f21dcc508750 Mon Sep 17 00:00:00 2001 From: Piotr Puszkiewicz Date: Tue, 14 Mar 2017 13:54:11 -0700 Subject: [PATCH] Fix test using `:` as option value separator --- .../GivenDotnetTestBuildsAndRunsTestfromCsproj.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs index 256c92609..9f3b7f050 100644 --- a/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs +++ b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs @@ -134,7 +134,7 @@ namespace Microsoft.DotNet.Cli.Test.Tests // Call test with logger enable CommandResult result = new DotnetTestCommand() .WithWorkingDirectory(testProjectDirectory) - .ExecuteWithCapturedOutput("--logger:trx"); + .ExecuteWithCapturedOutput("--logger trx"); // Verify String[] trxFiles = Directory.GetFiles(trxLoggerDirectory, "*.trx");