1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Remove redundant string interpolation

This commit is contained in:
Dean Herbert 2022-09-19 21:51:54 +09:00
parent 0a625bd879
commit 41e7d271d7

View File

@ -111,7 +111,7 @@ namespace osu.Game.Tests.Visual.Gameplay
Mod[] originalMods = { new OsuModDaycore { SpeedChange = { Value = 0.8 } } };
Mod[] playerMods = null!;
AddStep($"Load player with mods", () => LoadPlayer(originalMods));
AddStep("load player with mods", () => LoadPlayer(originalMods));
AddUntilStep("player loaded", () => Player.IsLoaded && Player.Alpha == 1);
AddStep("get mods at start of gameplay", () => playerMods = Player.Score.ScoreInfo.Mods.ToArray());