Skip to content

Commit

Permalink
Improved code coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCiliaVincenti committed Jul 21, 2024
1 parent 273a4b7 commit e0a2db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AsyncKeyedLock.Tests/AsyncKeyedLocker/OriginalTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class OriginalTests
[Fact]
public void TestRecursion()
{
var asyncKeyedLocker = new AsyncKeyedLocker<string>(o => o.PoolSize = 1);
var asyncKeyedLocker = new AsyncKeyedLocker<string>(o => { o.PoolSize = 1; o.PoolInitialFill = -1; });

double Factorial(int number, bool isFirst = true)
{
Expand Down

0 comments on commit e0a2db3

Please sign in to comment.