From fa4fad1ba02d4f873c4579d7e6d522cc64c0df94 Mon Sep 17 00:00:00 2001 From: Faizan Ahmad Date: Thu, 3 Nov 2016 00:49:49 +0530 Subject: [PATCH] Update vstest test to use short name test asset --- test/dotnet-vstest.Tests/VSTestTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/dotnet-vstest.Tests/VSTestTests.cs b/test/dotnet-vstest.Tests/VSTestTests.cs index e3d685090..addfa6afa 100644 --- a/test/dotnet-vstest.Tests/VSTestTests.cs +++ b/test/dotnet-vstest.Tests/VSTestTests.cs @@ -16,20 +16,20 @@ namespace Microsoft.DotNet.Cli.VSTest.Tests [Fact] public void TestsFromAGivenContainerShouldRunWithExpectedOutput() { - // Copy DotNetCoreTestProject project in output directory of project dotnet-vstest.Tests - string testAppName = "VSTestDotNetCoreProject"; + // Copy VSTestDotNetCore project in output directory of project dotnet-vstest.Tests + string testAppName = "VSTestDotNetCore"; TestInstance testInstance = TestAssetsManager.CreateTestInstance(testAppName); string testProjectDirectory = testInstance.TestRoot; - // Restore project VSTestDotNetCoreProject + // Restore project VSTestDotNetCore new RestoreCommand() .WithWorkingDirectory(testProjectDirectory) .Execute() .Should() .Pass(); - // Build project VSTestDotNetCoreProject + // Build project VSTestDotNetCore new BuildCommand() .WithWorkingDirectory(testProjectDirectory) .Execute()