From c980d0a8edec0fc8c4ee774c6446a88f1141ec92 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Wed, 17 Feb 2016 21:20:18 -0800 Subject: [PATCH] Fixed priting of test project --- scripts/dotnet-cli-build/TestTargets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dotnet-cli-build/TestTargets.cs b/scripts/dotnet-cli-build/TestTargets.cs index 1df5dd61b..6978bd013 100644 --- a/scripts/dotnet-cli-build/TestTargets.cs +++ b/scripts/dotnet-cli-build/TestTargets.cs @@ -179,7 +179,7 @@ namespace Microsoft.DotNet.Cli.Build var failingTests = new List(); foreach (var project in TestProjects) { - c.Info("Running tests in: {project}"); + c.Info($"Running tests in: {project}"); var result = dotnet.Test("-xml", $"{project}-testResults.xml", "-notrait", "category=failing") .WorkingDirectory(Path.Combine(c.BuildContext.BuildDirectory, "test", project)) .Environment(vsvars)