1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 01:27:20 +08:00

Fix another potential failure

This commit is contained in:
smoogipoo 2021-07-06 17:57:24 +09:00
parent 8b12ec9586
commit b209868d96

View File

@ -219,7 +219,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
Client.ChangeUserState(Client.Room?.Users[0].UserID ?? 0, MultiplayerUserState.FinishedPlay); Client.ChangeUserState(Client.Room?.Users[0].UserID ?? 0, MultiplayerUserState.FinishedPlay);
}); });
AddAssert("ready button enabled", () => button.ChildrenOfType<OsuButton>().Single().Enabled.Value); AddUntilStep("ready button enabled", () => button.ChildrenOfType<OsuButton>().Single().Enabled.Value);
} }
} }
} }