Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -988,8 +988,8 @@ public void Trim()

Assert.Equal(numItems, mc.GetCount());

// Trimming 75% for such a small number of items (supposedly each in its cache store) will end up trimming all of them
long trimmed = mc.Trim(75);
// Trimming 76% for such a small number of items (supposedly each in its cache store) will end up trimming all of them
long trimmed = mc.Trim(76);
Assert.Equal(numItems, trimmed);
Assert.Equal(0, mc.GetCount());

Expand Down