Merge pull request #16631 from frenzibyte/make-test-abstract

Mark `EditorSavingTestScene` as abstract to not appear in visual test browser
This commit is contained in:
Dean Herbert
2022-01-26 23:10:09 +09:00
committed by GitHub

View File

@ -16,7 +16,7 @@ namespace osu.Game.Tests.Visual
/// <summary>
/// Tests the general expected flow of creating a new beatmap, saving it, then loading it back from song select.
/// </summary>
public class EditorSavingTestScene : OsuGameTestScene
public abstract class EditorSavingTestScene : OsuGameTestScene
{
protected Editor Editor => Game.ChildrenOfType<Editor>().FirstOrDefault();