Vasyl has uploaded a patch.
Description:
The patch allows comparing collections with nulls inside (original code throws an exception trying to perform "null.Equals(null)"):
var sample = new[] {new Value(1), null};
var reference = new[] {new Value(1), null};
sample.Should().Equal(reference);