diff --git a/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs b/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs index 5ccbbc159c614..8511f17b0ab45 100644 --- a/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs +++ b/src/libraries/Microsoft.Extensions.Caching.Memory/tests/CapacityTests.cs @@ -143,6 +143,7 @@ public async Task DoNotAddIfSizeOverflows() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/33993")] public async Task ExceedsCapacityCompacts() { var cache = new MemoryCache(new MemoryCacheOptions @@ -236,7 +237,7 @@ public void AddingReplacementWhenTotalSizeExceedsCapacityDoesNotUpdateAndRemoves } [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/34102")] + [ActiveIssue("https://github.com/dotnet/runtime/issues/33993")] public async Task AddingReplacementWhenTotalSizeExceedsCapacityDoesNotUpdateRemovesOldEntryAndTriggersCompaction() { var cache = new MemoryCache(new MemoryCacheOptions @@ -342,6 +343,7 @@ public async Task ExpiringEntryDecreasesCacheSize() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/33993")] public async Task CompactsToLessThanLowWatermarkUsingLRUWhenHighWatermarkExceeded() { var testClock = new TestClock();