From a07c3961294f18b458e7208ff8d3029aba53033f Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Tue, 5 Apr 2016 12:06:30 -0700 Subject: [PATCH] Changing the name of two tests that conflict with each other and fail inconsistently when the tests run in parallel because they stomp on each other. --- test/dotnet-build.Tests/BuildPortableTests.cs | 2 +- test/dotnet-build.Tests/BuildStandAloneTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dotnet-build.Tests/BuildPortableTests.cs b/test/dotnet-build.Tests/BuildPortableTests.cs index 210ea83e3..d55028f95 100644 --- a/test/dotnet-build.Tests/BuildPortableTests.cs +++ b/test/dotnet-build.Tests/BuildPortableTests.cs @@ -50,7 +50,7 @@ namespace Microsoft.DotNet.Tools.Builder.Tests } [Fact] - public void TheRuntimeOptionsGetsCopiedFromProjectJsonToRuntimeConfigJson() + public void RuntimeOptionsGetsCopiedToRuntimeConfigJsonForAPortableApp() { var testInstance = TestAssetsManager.CreateTestInstance("PortableTests") .WithLockFiles(); diff --git a/test/dotnet-build.Tests/BuildStandAloneTests.cs b/test/dotnet-build.Tests/BuildStandAloneTests.cs index e1dbfb6c6..7fcb485e3 100644 --- a/test/dotnet-build.Tests/BuildStandAloneTests.cs +++ b/test/dotnet-build.Tests/BuildStandAloneTests.cs @@ -38,7 +38,7 @@ namespace Microsoft.DotNet.Tools.Builder.Tests } [Fact] - public void TheRuntimeOptionsGetsCopiedFromProjectJsonToRuntimeConfigJson() + public void RuntimeOptionsGetsCopiedToRuntimeConfigJsonForAStandaloneApp() { var testInstance = TestAssetsManager.CreateTestInstance("PortableTests") .WithLockFiles();