FluentAssertions seems to fail with NullReferece exception when I try comparing two collections with nulls
[Test]
public void DeepWithNulls()
{
var l1 = new List<string> { "aaa", null };
var l2 = new List<string> { "aaa", null };
l1.Should().Equal(l2);
}
Comparison works as expected on collections with no nulls.