To fix error in tests add followings lines of code. Example in xUnit:
[Fact]
public void Test()
{
// Arrange
var fixture = new Fixture();
fixture.Behaviors.OfType<ThrowingRecursionBehavior>()
.ToList()
.ForEach(b => fixture.Behaviors.Remove(b));
fixture.Behaviors.Add(new OmitOnRecursionBehavior());
// Create an instance of the object you want to test
var yourObject = fixture.Create<yourObjectClass>();
// Act
// Assert
}