1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-31 04:32:57 +08:00

Don't require track to be playing to fix test failures on some platforms

This commit is contained in:
Dean Herbert 2025-01-06 18:27:00 +09:00
parent 72dfdac2e2
commit ca9e16387a
No known key found for this signature in database

View File

@ -28,7 +28,7 @@ namespace osu.Game.Tests.Visual.Menus
RestartIntro(); RestartIntro();
WaitForMenu(); WaitForMenu();
AddUntilStep("wait for track playing", () => Intro.Beatmap.Value.Track is TrackBass trackBass && trackBass.IsRunning); AddUntilStep("ensure track is not virtual", () => Intro.Beatmap.Value.Track is TrackBass);
} }
protected override bool IntroReliesOnTrack => true; protected override bool IntroReliesOnTrack => true;