Fix intermittent failure in playlists match loading test

This commit is contained in:
Salman Ahmed 2023-01-20 01:18:41 +03:00
parent 5a1940facf
commit 8174ef06c3
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public void TestLoadSimpleMatch()
AddUntilStep("Leaderboard shows two aggregate scores", () => match.ChildrenOfType<MatchLeaderboardScore>().Count(s => s.ScoreText.Text != "0") == 2);
AddStep("start match", () => match.ChildrenOfType<PlaylistsReadyButton>().First().TriggerClick());
ClickButtonWhenEnabled<PlaylistsReadyButton>();
AddUntilStep("player loader loaded", () => Stack.CurrentScreen is PlayerLoader);
}