1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 21:00:27 +08:00

Attempt to fix flaky test

This commit is contained in:
Dean Herbert
2026-01-01 19:41:14 +09:00
Unverified
parent d204b79342
commit e539660b14
@@ -34,7 +34,7 @@ namespace osu.Game.Tests.Visual.Editing
SaveEditor();
ReloadEditorToSameBeatmap();
AddAssert("beatmap marked as locally modified", () => EditorBeatmap.BeatmapInfo.Status, () => Is.EqualTo(BeatmapOnlineStatus.LocallyModified));
AddUntilStep("beatmap marked as locally modified", () => EditorBeatmap.BeatmapInfo.Status, () => Is.EqualTo(BeatmapOnlineStatus.LocallyModified));
AddAssert("beatmap hash changed", () => EditorBeatmap.BeatmapInfo.MD5Hash, () => Is.Not.EqualTo(initialHash));
}
}