After upgrading FluentAssertions from 5.4.2 to 5.5.0, the following code:
var actualString = @"<JSON HERE>";
var expectedString = @"<JSON HERE>";
var actual = JsonParsingHelper.Parse(actualString);
var expected = JsonParsingHelper.Parse(expectedString);
actual.Should().BeEquivalentTo(expected);
produces the following error:
System.MissingMethodException : Method not found: 'FluentAssertions.Execution.AssertionScope FluentAssertions.Execution.AssertionScope.ForCondition(Boolean)'.
at FluentAssertions.Json.JTokenAssertions.HaveElement(String expected, String because, Object[] becauseArgs)