1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 21:52:55 +08:00

Fix failures if test ran too fast

This commit is contained in:
Dean Herbert 2020-08-24 00:13:26 +09:00
parent 2dce850f5b
commit d274652b3a

View File

@ -33,7 +33,7 @@ namespace osu.Game.Rulesets.Catch.Tests
for (int i = 0; i < 9; i++)
{
int count = i + 1;
AddUntilStep("wait for next hyperdash", () => hyperDashCount == count);
AddUntilStep("wait for next hyperdash", () => hyperDashCount >= count);
}
}