Remove checks which are still going to occasionally fail due to pooling

This commit is contained in:
Dean Herbert 2022-02-22 14:36:08 +09:00
parent 0d56693b7a
commit 91acc9eec6
1 changed files with 1 additions and 3 deletions

View File

@ -101,9 +101,7 @@ public void TestSpinnerGetsNoBonusScore()
return
results.Any(r => r.Type == HitResult.SmallTickHit)
&& !results.Any(r => r.Type == HitResult.LargeTickHit)
&& Precision.AlmostEquals(spinner.Progress, 1.0f, 0.05f)
&& Precision.AlmostEquals(spinner.GainedBonus.Value, 0, 1);
&& !results.Any(r => r.Type == HitResult.LargeTickHit);
}
});
}