1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00

Fix broken test step

This commit is contained in:
Dean Herbert 2023-01-18 18:12:40 +09:00
parent 4cfb059170
commit d4f2cd244d

View File

@ -53,7 +53,7 @@ namespace osu.Game.Tests.Visual.Gameplay
applyToArgonProgress(d => d.ChildrenOfType<ArgonSongProgressBar>().Single().OnSeek += t => gameplayClockContainer.Seek(t));
});
AddStep("seek to intro", () => gameplayClockContainer.Seek(skip_target_time));
AddStep("start", gameplayClockContainer.Start);
AddStep("start", () => gameplayClockContainer.Start());
}
[Test]