1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 06:52:56 +08:00

remove unecessary step

This commit is contained in:
unknown 2019-11-15 11:12:51 +08:00
parent a92b32f6dc
commit 15e85234e4

View File

@ -34,7 +34,6 @@ namespace osu.Game.Tests.Visual.UserInterface
AddStep("select mod", () => modSelect.SelectMod(testMod));
AddAssert("button enabled", () => modSelect.CustomizeButton.Enabled.Value);
AddStep("open customization", () => modSelect.CustomizeButton.Click());
AddAssert("controls exist", () => modSelect.GetControlSection(testMod) != null);
AddStep("deselect mod", () => modSelect.SelectMod(testMod));
AddAssert("controls hidden", () => modSelect.ModSettingsContainer.Alpha == 0);
}