1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-07 22:22:59 +08:00

Fix test failures

This commit is contained in:
Dean Herbert 2022-01-22 02:39:01 +09:00
parent 2a786f9ec0
commit 83b0e4572a

View File

@ -68,7 +68,7 @@ namespace osu.Game.Tests.Visual.UserInterface
AddStep("drag to 5th", () => AddStep("drag to 5th", () =>
{ {
var item = this.ChildrenOfType<PlaylistItem>().ElementAt(4); var item = this.ChildrenOfType<PlaylistItem>().ElementAt(4);
InputManager.MoveMouseTo(item.ScreenSpaceDrawQuad.Centre); InputManager.MoveMouseTo(item.ScreenSpaceDrawQuad.BottomLeft);
}); });
AddAssert("song 1 is 5th", () => beatmapSets[4].Equals(first)); AddAssert("song 1 is 5th", () => beatmapSets[4].Equals(first));