Fix test step not being `until` when it needs to be

This commit is contained in:
Dean Herbert 2022-01-17 19:45:32 +09:00
parent a80e461000
commit 0ba0b5f11a
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public void TestUserBest()
scoresContainer.Scores = allScores;
});
AddAssert("best score not displayed", () => scoresContainer.ChildrenOfType<DrawableTopScore>().Count() == 1);
AddUntilStep("best score not displayed", () => scoresContainer.ChildrenOfType<DrawableTopScore>().Count() == 1);
}
private int onlineID = 1;