Skip to content

Commit

Permalink
Fixup BeEquivalentTo
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonGraal committed Jan 11, 2025
1 parent 583a75f commit c52a1b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected object Merge_Expected(TAst[] asts, params TAst[] expected)
using AssertionScope scope = new();

result.Should().BeAssignableTo<IEnumerable<TAst>>();
result.Should().BeEquivalentTo(expected);
result.Should().BeEquivalentTo(expected, o => o.AllowingInfiniteRecursion());

return this;
}
Expand Down

0 comments on commit c52a1b3

Please sign in to comment.