Set default beatmap later in test initialisation

This commit is contained in:
Dean Herbert 2020-01-31 16:14:55 +09:00
parent e6783b622d
commit ab7bbf38a8
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,6 @@ private void load(GameHost host, AudioManager audio)
// required to get bindables attached
Add(music);
Beatmap.SetDefault();
Dependencies.Cache(config = new OsuConfigManager(LocalStorage));
}
@ -88,6 +86,8 @@ public override void SetUpSteps()
{
Ruleset.Value = new OsuRuleset().RulesetInfo;
manager?.Delete(manager.GetAllUsableBeatmapSets());
Beatmap.SetDefault();
});
}