Remove AngleSharp package reference

This commit is contained in:
Ronald Barendse
2023-11-21 09:58:29 +01:00
parent 93c46b1d10
commit a77b77d98a
2 changed files with 2 additions and 7 deletions

View File

@@ -5,7 +5,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AngleSharp" Version="1.0.6" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="System.Data.Odbc" Version="8.0.0" />

View File

@@ -1,8 +1,4 @@
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using AngleSharp.Common;
using AutoFixture.NUnit3;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Identity;
@@ -782,8 +778,8 @@ public class MemberControllerUnitTests
for (var index = 0; index < resultValue.Properties.Count(); index++)
{
Assert.AreNotSame(
memberDisplay.Properties.GetItemByIndex(index),
resultValue.Properties.GetItemByIndex(index));
memberDisplay.Properties.ElementAt(index),
resultValue.Properties.ElementAt(index));
// Assert.AreEqual(memberDisplay.Properties.GetItemByIndex(index), resultValue.Properties.GetItemByIndex(index));
}