From 5684f9933df0164368e1a52dba2a83976799997b Mon Sep 17 00:00:00 2001 From: Eric Erhardt Date: Fri, 8 Apr 2016 11:35:13 -0500 Subject: [PATCH] Fix dotnet-test.UnitTests now that ProjectWithTests has moved outside of TestAssets/TestProjects. --- test/dotnet-test.UnitTests/GivenATestCommand.cs | 1 - test/dotnet-test.UnitTests/project.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/dotnet-test.UnitTests/GivenATestCommand.cs b/test/dotnet-test.UnitTests/GivenATestCommand.cs index 2d0e5c405..86555da1f 100644 --- a/test/dotnet-test.UnitTests/GivenATestCommand.cs +++ b/test/dotnet-test.UnitTests/GivenATestCommand.cs @@ -16,7 +16,6 @@ namespace Microsoft.Dotnet.Tools.Test.Tests private static readonly string ProjectJsonPath = Path.Combine( AppContext.BaseDirectory, "TestAssets", - "TestProjects", "ProjectWithTests", "project.json"); diff --git a/test/dotnet-test.UnitTests/project.json b/test/dotnet-test.UnitTests/project.json index bcc16494a..d45a2e5aa 100644 --- a/test/dotnet-test.UnitTests/project.json +++ b/test/dotnet-test.UnitTests/project.json @@ -28,7 +28,7 @@ } }, "content": [ - "../../TestAssets/TestProjects/ProjectWithTests/project.json" + "../../TestAssets/ProjectWithTests/project.json" ], "testRunner": "xunit" }