Remove unnecessary assertion in DthTests

The count of file references is different on different platform. It is
not essential to the test since there are assertion to test required
references' existence.
This commit is contained in:
Troy Dai 2016-03-30 14:56:18 -07:00 committed by Mihai Codoban
parent 54278c294e
commit 52cabf9cbf

View file

@ -461,7 +461,6 @@ namespace Microsoft.DotNet.ProjectModel.Server.Tests
var fileReferences = references.RetrievePropertyAs<JArray>("FileReferences")
.Select(each => each.Value<string>())
.ToArray();
Assert.Equal(3, fileReferences.Length);
foreach (var each in classLibraries)
{
fileReferences.Contains(Path.Combine("ValidCase01", "ClassLibrary1", "bin", "Debug", $"{each}.dll"));