Merge pull request #2685 from dotnet/brthor/2536

remove test skips introduced to workaround #2536
This commit is contained in:
Bryan Thornbury 2016-04-26 12:21:08 -07:00
commit b4bab42e4f

View file

@ -178,7 +178,7 @@ namespace Microsoft.DotNet.Tools.Publish.Tests
publishCommand.Execute().Should().Pass();
}
[Fact(Skip="https://github.com/dotnet/cli/issues/2536")]
[Fact]
public void PublishedLibraryShouldOutputDependenciesAndNoHost()
{
TestInstance instance = TestAssetsManager.CreateTestInstance(Path.Combine("TestAppWithLibrary"))
@ -195,7 +195,7 @@ namespace Microsoft.DotNet.Tools.Publish.Tests
publishCommand.GetOutputDirectory().Should().HaveFile("System.Runtime.dll");
}
[WindowsOnlyFact(Skip="https://github.com/dotnet/cli/issues/2536")]
[WindowsOnlyFact()]
public void TestLibraryBindingRedirectGeneration()
{
TestInstance instance = TestAssetsManager.CreateTestInstance("TestBindingRedirectGeneration")