1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Fix new test failing on headless runs

This commit is contained in:
Dean Herbert 2022-07-01 17:07:00 +09:00
parent 545df0a8e8
commit 17ad6648d1

View File

@ -14,13 +14,16 @@ namespace osu.Game.Tests.Visual.SongSelect
[Test]
public void TestBasic()
{
Child = new DifficultyRangeFilterControl
AddStep("create control", () =>
{
Width = 200,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Scale = new Vector2(3),
};
Child = new DifficultyRangeFilterControl
{
Width = 200,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Scale = new Vector2(3),
};
});
}
}
}