From a145c7ae81256a7a6b200310240a3d3ad9130581 Mon Sep 17 00:00:00 2001 From: jonsequitur Date: Tue, 20 Dec 2016 18:17:36 -0800 Subject: [PATCH] fix path length problem in test --- test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs b/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs index a2f06c8e3..30cb3cc22 100644 --- a/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs +++ b/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs @@ -476,8 +476,9 @@ namespace Microsoft.DotNet.Migration.Tests [InlineData("LibraryWithNetStandardLibRef")] public void ItMigratesAndBuildsLibrary(string projectName) { - var projectDirectory = TestAssetsManager.CreateTestInstance(projectName, - identifier: $"{nameof(ItMigratesAndBuildsLibrary)}-{projectName}").Path; + var projectDirectory = TestAssetsManager.CreateTestInstance( + projectName, + identifier: $"{projectName}").Path; MigrateProject(projectDirectory); Restore(projectDirectory, projectName);