Remove test workaround for fixed issue.

Fixes #11206
This commit is contained in:
Kevin Pilch 2019-09-03 11:15:00 -07:00 committed by Kevin Pilch
parent 834e316f7a
commit c9505a2911
1 changed files with 0 additions and 3 deletions

View File

@ -34,9 +34,6 @@ namespace Microsoft.AspNetCore
IEnumerable<string> dlls = Directory.GetFiles(_targetingPackRoot, "*.dll", SearchOption.AllDirectories);
Assert.NotEmpty(dlls);
// Workaround https://github.com/aspnet/AspNetCore/issues/11206
dlls = dlls.Where(d => !d.Contains("System.IO.Pipelines"));
Assert.All(dlls, path =>
{
var assemblyName = AssemblyName.GetAssemblyName(path);