mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
Fix test failures due to double BeginPlaying
calls
This commit is contained in:
parent
017f5a9b9b
commit
2212bea17f
@ -36,7 +36,7 @@ using osuTK.Graphics;
|
||||
namespace osu.Game.Tests.Visual.Background
|
||||
{
|
||||
[TestFixture]
|
||||
public class TestSceneUserDimBackgrounds : OsuManualInputManagerTestScene
|
||||
public class TestSceneUserDimBackgrounds : ScreenTestScene
|
||||
{
|
||||
private DummySongSelect songSelect;
|
||||
private TestPlayerLoader playerLoader;
|
||||
@ -56,14 +56,12 @@ namespace osu.Game.Tests.Visual.Background
|
||||
Beatmap.SetDefault();
|
||||
}
|
||||
|
||||
[SetUp]
|
||||
public virtual void SetUp() => Schedule(() =>
|
||||
public override void SetUpSteps()
|
||||
{
|
||||
var stack = new OsuScreenStack { RelativeSizeAxes = Axes.Both };
|
||||
Child = stack;
|
||||
base.SetUpSteps();
|
||||
|
||||
stack.Push(songSelect = new DummySongSelect());
|
||||
});
|
||||
AddStep("push song select", () => Stack.Push(songSelect = new DummySongSelect()));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// User settings should always be ignored on song select screen.
|
||||
|
Loading…
Reference in New Issue
Block a user