1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 17:47:18 +08:00

Fix tests

This commit is contained in:
Dan Balasescu 2023-10-10 16:51:24 +09:00
parent 04ce223e66
commit 94192644be
No known key found for this signature in database

View File

@ -107,7 +107,7 @@ namespace osu.Game.Tests.Rulesets.Scoring
for (int i = 0; i < 4; i++)
{
var judgementResult = new JudgementResult(fourObjectBeatmap.HitObjects[i], beatmap.HitObjects[i].CreateJudgement())
var judgementResult = new JudgementResult(fourObjectBeatmap.HitObjects[i], fourObjectBeatmap.HitObjects[i].CreateJudgement())
{
Type = i == 2 ? minResult : hitResult
};
@ -277,8 +277,8 @@ namespace osu.Game.Tests.Rulesets.Scoring
{
HitObjects = new List<HitObject>
{
new TestHitObject(HitResult.Great, HitResult.ComboBreak),
new TestHitObject(HitResult.Great, HitResult.ComboBreak),
new TestHitObject(HitResult.Great),
new TestHitObject(HitResult.IgnoreHit, HitResult.ComboBreak),
}
};