1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 01:07:25 +08:00

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
commit 70acc4d0bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();