diff --git a/src/tests/GC/Regressions/v2.0-beta2/452950/452950.cs b/src/tests/GC/Regressions/v2.0-beta2/452950/452950.cs index 88632d862a58c..2c2272ace012a 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/452950/452950.cs +++ b/src/tests/GC/Regressions/v2.0-beta2/452950/452950.cs @@ -39,8 +39,8 @@ public static int Main(string[] args) int gcCount = GC.CollectionCount(GC.MaxGeneration); Console.WriteLine(gcCount); - // if we do a full collection <= (5% of the interations) times, we pass - if (gcCount <= (numIterations*0.05)) + // if we do a full collection <= (10% of the interations) times, we pass + if (gcCount <= (numIterations*0.1)) { Console.WriteLine("Passed"); return 100;