1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 01:30:05 +08:00

Merge pull request #2096 from peppy/update-framework

Fix some common CI unit test failure causes
This commit is contained in:
Dan Balasescu
2018-02-21 17:59:17 +09:00
committed by GitHub
Unverified
2 changed files with 4 additions and 2 deletions
@@ -60,7 +60,9 @@ namespace osu.Game.Tests.Visual
AddStep("Load Beatmaps", () => { carousel.BeatmapSets = beatmapSets; });
AddUntilStep(() => carousel.BeatmapSets.Any(), "Wait for load");
bool changed = false;
carousel.BeatmapSetsChanged = () => changed = true;
AddUntilStep(() => changed, "Wait for load");
testTraversal();
testFiltering();