1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Fix actually incorrect navigation test (can no longer retry from autoplay results)

This commit is contained in:
Dean Herbert 2021-06-01 16:54:29 +09:00
parent 289dc00f38
commit 7a71cc1e82

View File

@ -95,7 +95,7 @@ namespace osu.Game.Tests.Visual.Navigation
AddUntilStep("wait for selected", () => !Game.Beatmap.IsDefault);
AddStep("set autoplay", () => Game.SelectedMods.Value = new[] { new OsuModAutoplay() });
AddStep("set nofail", () => Game.SelectedMods.Value = new[] { new OsuModNoFail() });
AddStep("press enter", () => InputManager.Key(Key.Enter));
AddUntilStep("wait for player", () => (player = Game.ScreenStack.CurrentScreen as Player) != null);