1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:47:52 +08:00

Add until step to ensure failure

This commit is contained in:
Bartłomiej Dach 2020-08-20 21:01:58 +02:00
parent 8b8fff2766
commit bd4acdce78

View File

@ -14,7 +14,8 @@ namespace osu.Game.Tests.Visual.Multiplayer
{
Screens.Multi.Multiplayer multi = new Screens.Multi.Multiplayer();
AddStep(@"show", () => LoadScreen(multi));
AddStep("show", () => LoadScreen(multi));
AddUntilStep("wait for loaded", () => multi.IsLoaded);
}
}
}