From 7edea7e23ef675dee517c060f9d179e024256233 Mon Sep 17 00:00:00 2001 From: Parallels Date: Fri, 4 Nov 2016 12:56:21 -0700 Subject: [PATCH] Fixing pack tests that were looking for the nupkg under bin/debug/TFM instead of bin/Debug. This was a change in pack that needed to be reflected in the tests. --- test/dotnet-pack.Tests/PackTests.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/dotnet-pack.Tests/PackTests.cs b/test/dotnet-pack.Tests/PackTests.cs index bf48f42aacb0..3c209d021b41 100644 --- a/test/dotnet-pack.Tests/PackTests.cs +++ b/test/dotnet-pack.Tests/PackTests.cs @@ -90,9 +90,8 @@ public void SettingVersionSuffixFlag_ShouldStampAssemblyInfoInOutputAssemblyAndP informationalVersion.Should().NotBeNull() .And.BeEquivalentTo("1.0.0-85"); - // netstandard1.5 is a workaround for https://github.com/dotnet/sdk/issues/318 var outputPackage = testInstance.Root - .GetDirectory("bin", "Debug", "netstandard1.5") + .GetDirectory("bin", "Debug") .GetFile("TestLibraryWithConfiguration.1.0.0-85.nupkg"); outputPackage.Should().Exist(); @@ -191,8 +190,7 @@ public void HasServiceableFlagWhenArgumentPassed() result.Should().Pass(); - // netstandard1.5 is a workaround for https://github.com/dotnet/sdk/issues/318 - var outputDir = testInstance.Root.GetDirectory("bin", "Debug", "netstandard1.5"); + var outputDir = testInstance.Root.GetDirectory("bin", "Debug"); outputDir.Should().Exist() .And.HaveFile("TestLibraryWithConfiguration.1.0.0.nupkg");