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

View File

@ -101,9 +101,7 @@ namespace osu.Game.Rulesets.Osu.Tests.Mods
return return
results.Any(r => r.Type == HitResult.SmallTickHit) results.Any(r => r.Type == HitResult.SmallTickHit)
&& !results.Any(r => r.Type == HitResult.LargeTickHit) && !results.Any(r => r.Type == HitResult.LargeTickHit);
&& Precision.AlmostEquals(spinner.Progress, 1.0f, 0.05f)
&& Precision.AlmostEquals(spinner.GainedBonus.Value, 0, 1);
} }
}); });
} }