You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Test]
public async Task Test()
{
IEnumerable value = new List<int> { 1, 2, 3 };
await Assert.That(value).IsEqualTo(value);
}
But instead I get the error:
Expected value to be equal to System.Collections.Generic.List`1[System.Int32]
but found System.Linq.Enumerable+CastICollectionIterator`1[System.Object]
at Assert.That(value).IsEqualTo(value)
The text was updated successfully, but these errors were encountered:
I'd expect the following to pass:
But instead I get the error:
The text was updated successfully, but these errors were encountered: