Rename BeatmapSetInfo.OnlineBeatmapSetID to OnlineID to match interface

This commit is contained in:
Dean Herbert
2021-11-12 17:50:31 +09:00
parent 6a098a8634
commit 692e846acd
32 changed files with 60 additions and 59 deletions

View File

@ -174,7 +174,7 @@ namespace osu.Game.Tests.Visual.Navigation
{
AddStep("import beatmap", () => ImportBeatmapTest.LoadQuickOszIntoOsu(Game).Wait());
PushAndConfirm(() => new TestPlaySongSelect());
AddUntilStep("beatmap updated", () => Game.Beatmap.Value.BeatmapSetInfo.OnlineBeatmapSetID == 241526);
AddUntilStep("beatmap updated", () => Game.Beatmap.Value.BeatmapSetInfo.OnlineID == 241526);
}
public class DialogBlockingScreen : OsuScreen