Update tests in line with new behaviour

This commit is contained in:
Dean Herbert 2023-10-12 14:49:07 +09:00
parent 242a41371c
commit 73b8146729
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ public void TestPerformExitNoOutro()
AddStep("disable storyboard", () => LocalConfig.SetValue(OsuSetting.ShowStoryboard, false));
AddUntilStep("completion set by processor", () => Player.ScoreProcessor.HasCompleted.Value);
AddStep("exit via pause", () => Player.ExitViaPause());
AddAssert("player exited", () => Stack.CurrentScreen == null);
AddUntilStep("reached results screen", () => Stack.CurrentScreen is ResultsScreen);
}
[Test]