1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 04:52:57 +08:00

Merge pull request #22232 from frenzibyte/fix-beatmap-options-test-failure

Fix intermittent failure in beatmap options state test
This commit is contained in:
Dan Balasescu 2023-01-16 20:58:03 +09:00 committed by GitHub
commit 83e0e1f1ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1064,6 +1064,7 @@ namespace osu.Game.Tests.Visual.SongSelect
AddAssert("options enabled", () => songSelect.ChildrenOfType<FooterButtonOptions>().Single().Enabled.Value);
AddStep("delete all beatmaps", () => manager.Delete());
AddWaitStep("wait for debounce", 1);
AddAssert("options disabled", () => !songSelect.ChildrenOfType<FooterButtonOptions>().Single().Enabled.Value);
}