Skip to content

Commit

Permalink
Fix mutant
Browse files Browse the repository at this point in the history
Fix undetected mutant by using a more strict assertion.
  • Loading branch information
martincostello committed Jan 18, 2025
1 parent acd3047 commit 3b8ba0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Polly.Core.Tests/Utils/ObjectPoolTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void MaxCapacity_Respected()
var items2 = GetStoreReturn(pool);

// Assert
items1.ShouldBeEquivalentTo(items2);
items1.ShouldBe(items2);
}

[Fact]
Expand Down

0 comments on commit 3b8ba0e

Please sign in to comment.