Skip to content

Commit

Permalink
Fix net48 tests build
Browse files Browse the repository at this point in the history
  • Loading branch information
neon-sunset committed Oct 6, 2022
1 parent b493e0a commit 2a269fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/FastCache.CachedTests/Internals/CacheManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public async Task EnumerateEntries_ReturnsCorrectValues()
var notExpired = (1024..2048).AsEnumerable().ToDictionary(i => i, _ => new EnumerableEntry());

CachedRange<EnumerableEntry>.Save(expired.Select(kvp => (kvp.Key, kvp.Value)), DelayTolerance);
CachedRange<EnumerableEntry>.Save(notExpired.Select(kvp => (kvp.Key, kvp.Value)), DelayTolerance * 2);
CachedRange<EnumerableEntry>.Save(notExpired.Select(kvp => (kvp.Key, kvp.Value)), DelayTolerance.MultiplyBy(2));

await Task.Delay(DelayTolerance);

Expand Down

0 comments on commit 2a269fa

Please sign in to comment.