Skip to content

Commit

Permalink
Fix compile error in test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Exanite committed Jan 21, 2025
1 parent 84c83bb commit 2aecfbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/PoolTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void Acquire_EnforcesMaxInactiveLimit()
var pool = new Pool<A>(create: () => new A(), maxInactive: maxInactive);
var active = new List<A>();

Assert.AreEqual(maxInactive, pool.MaxInactive);
Assert.AreEqual(maxInactive, pool.UsageInfo.MaxInactive);

for (var i = 0; i < acquireCountA; i++)
{
Expand Down

0 comments on commit 2aecfbc

Please sign in to comment.