Skip to content

Commit

Permalink
increase ttl
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Peck committed Oct 14, 2023
1 parent 4847704 commit 9a4776d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BitFaster.Caching.UnitTests/Lru/ConcurrentTLruTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public async Task WhenItemIsUpdatedTtlIsExtended()
[Fact]
public void WhenValueEvictedItemRemovedEventIsFired()
{
var lruEvents = CreateTLru<int, int>(new EqualCapacityPartition(6), timeToLive);
var lruEvents = CreateTLru<int, int>(new EqualCapacityPartition(6), TimeSpan.FromSeconds(10));
lruEvents.Events.Value.ItemRemoved += OnLruItemRemoved;

// First 6 adds
Expand Down

0 comments on commit 9a4776d

Please sign in to comment.