Merge branch 'master' into non-nullable-beatmapset-files

This commit is contained in:
Dean Herbert
2021-05-31 18:19:57 +09:00
8 changed files with 285 additions and 211 deletions

View File

@ -31,8 +31,6 @@ namespace osu.Game.Tests.Visual.Editing
public override void SetUpSteps()
{
AddStep("set dummy", () => Beatmap.Value = new DummyWorkingBeatmap(Audio, null));
base.SetUpSteps();
// if we save a beatmap with a hash collision, things fall over.
@ -40,6 +38,12 @@ namespace osu.Game.Tests.Visual.Editing
AddStep("make new beatmap unique", () => EditorBeatmap.Metadata.Title = Guid.NewGuid().ToString());
}
protected override void LoadEditor()
{
Beatmap.Value = new DummyWorkingBeatmap(Audio, null);
base.LoadEditor();
}
[Test]
public void TestCreateNewBeatmap()
{