1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-09 05:37:25 +08:00

Merge pull request #15882 from peppy/fix-invalid-screen-exist-multiplayer-test

Fix double screen exit in multiplayer song select tests potentially causing failure
This commit is contained in:
Bartłomiej Dach 2021-11-30 19:24:44 +01:00 committed by GitHub
commit c2afd7bbdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,7 +144,8 @@ namespace osu.Game.Tests.Visual.Multiplayer
AddStep("set mods", () => SelectedMods.Value = new[] { new TaikoModDoubleTime() });
AddStep("confirm selection", () => songSelect.FinaliseSelection());
AddStep("exit song select", () => songSelect.Exit());
AddUntilStep("song select exited", () => !songSelect.IsCurrentScreen());
AddAssert("beatmap not changed", () => Beatmap.Value.BeatmapInfo.Equals(selectedBeatmap));
AddAssert("ruleset not changed", () => Ruleset.Value.Equals(new TaikoRuleset().RulesetInfo));