1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Final cleanups

This commit is contained in:
Bartłomiej Dach 2020-04-05 15:39:32 +02:00
parent c817cc726a
commit 7135c99746

View File

@ -157,6 +157,7 @@ namespace osu.Game.Rulesets.Osu.Tests
private List<Vector2> sliderCurve => ((PlaySliderBody)slider.Body.Drawable).CurrentCurve;
private Vector2 sliderStart() => sliderCurve.First();
private Vector2 sliderEnd() => sliderCurve.Last();
private Vector2 sliderRepeat()
{
var drawable = Player.DrawableRuleset.Playfield.AllHitObjects.ElementAt(1);
@ -188,7 +189,7 @@ namespace osu.Game.Rulesets.Osu.Tests
private void setSnaking(bool value)
{
AddStep($"{(value ? "Enable" : "Disable")} snaking", () =>
AddStep($"{(value ? "enable" : "disable")} snaking", () =>
{
snakingIn.Value = value;
snakingOut.Value = value;