Skip to content

Commit

Permalink
Fix broken test step
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Jan 18, 2023
1 parent 4cfb059 commit d4f2cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Tests/Visual/Gameplay/TestSceneSongProgress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void SetupSteps()
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]
Expand Down

0 comments on commit d4f2cd2

Please sign in to comment.