1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 19:50:31 +08:00

Remove redundant string interpolation

This commit is contained in:
Christine Chen
2021-04-17 22:13:28 -04:00
Unverified
parent e9f8fa64b8
commit 7b1d40db7d
@@ -64,7 +64,7 @@ namespace osu.Game.Tests.Visual.Gameplay
{
AddStep($"{(enabledAtBeginning ? "enable" : "disable")} storyboard", () => LocalConfig.SetValue(OsuSetting.ShowStoryboard, enabledAtBeginning));
AddUntilStep("storyboard loaded", () => Player.Beatmap.Value.StoryboardLoaded);
AddStep($"toggle storyboard", () => LocalConfig.SetValue(OsuSetting.ShowStoryboard, !enabledAtBeginning));
AddStep("toggle storyboard", () => LocalConfig.SetValue(OsuSetting.ShowStoryboard, !enabledAtBeginning));
AddUntilStep("wait for score shown", () => Player.IsScoreShown);
}