We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8daef11 commit f3c7a6dCopy full SHA for f3c7a6d
BitFaster.Caching.UnitTests/Lru/ConcurrentTLruTests.cs
@@ -78,7 +78,7 @@ public async Task WhenItemIsUpdatedTtlIsExtended()
78
[Fact]
79
public void WhenValueEvictedItemRemovedEventIsFired()
80
{
81
- var lruEvents = CreateTLru<int, int>(new EqualCapacityPartition(6), timeToLive);
+ var lruEvents = CreateTLru<int, int>(new EqualCapacityPartition(6), TimeSpan.FromSeconds(10));
82
lruEvents.Events.Value.ItemRemoved += OnLruItemRemoved;
83
84
// First 6 adds
0 commit comments