mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 16:52:54 +08:00
Fix test failure due to off-screen panel
This commit is contained in:
parent
1819a15509
commit
250061ddf5
@ -661,12 +661,16 @@ namespace osu.Game.Tests.Visual.SongSelect
|
|||||||
|
|
||||||
createSongSelect();
|
createSongSelect();
|
||||||
|
|
||||||
|
BeatmapSetInfo imported = null;
|
||||||
|
|
||||||
AddStep("import huge difficulty count map", () =>
|
AddStep("import huge difficulty count map", () =>
|
||||||
{
|
{
|
||||||
var usableRulesets = rulesets.AvailableRulesets.Where(r => r.ID != 2).ToArray();
|
var usableRulesets = rulesets.AvailableRulesets.Where(r => r.ID != 2).ToArray();
|
||||||
manager.Import(createTestBeatmapSet(usableRulesets, 50)).Wait();
|
imported = manager.Import(createTestBeatmapSet(usableRulesets, 50)).Result;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
AddStep("select the first beatmap of import", () => Beatmap.Value = manager.GetWorkingBeatmap(imported.Beatmaps.First()));
|
||||||
|
|
||||||
DrawableCarouselBeatmapSet set = null;
|
DrawableCarouselBeatmapSet set = null;
|
||||||
AddUntilStep("Find the DrawableCarouselBeatmapSet", () =>
|
AddUntilStep("Find the DrawableCarouselBeatmapSet", () =>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user