Move online beatmap listing overlay to separate test scene

This commit is contained in:
Salman Ahmed 2021-01-25 23:40:26 +03:00
parent 9efce5717f
commit 9312de7c23
1 changed files with 3 additions and 2 deletions

View File

@ -6,13 +6,14 @@
namespace osu.Game.Tests.Visual.Online namespace osu.Game.Tests.Visual.Online
{ {
public class TestSceneBeatmapListingOverlay : OsuTestScene [Description("uses online API")]
public class TestSceneOnlineBeatmapListingOverlay : OsuTestScene
{ {
protected override bool UseOnlineAPI => true; protected override bool UseOnlineAPI => true;
private readonly BeatmapListingOverlay overlay; private readonly BeatmapListingOverlay overlay;
public TestSceneBeatmapListingOverlay() public TestSceneOnlineBeatmapListingOverlay()
{ {
Add(overlay = new BeatmapListingOverlay()); Add(overlay = new BeatmapListingOverlay());
} }