1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 12:23:21 +08:00

fix code quality

This commit is contained in:
OliBomby 2022-08-20 16:09:02 +02:00
parent 614ae815c0
commit 7732fb21d5

View File

@ -179,7 +179,7 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor
[Test] [Test]
public void TestRotatingSliderRetainsPerfectControlPointType() public void TestRotatingSliderRetainsPerfectControlPointType()
{ {
OsuSelectionHandler selectionHandler = null; OsuSelectionHandler selectionHandler;
AddAssert("first control point perfect", () => slider.Path.ControlPoints[0].Type == PathType.PerfectCurve); AddAssert("first control point perfect", () => slider.Path.ControlPoints[0].Type == PathType.PerfectCurve);
@ -221,7 +221,7 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor
[Test] [Test]
public void TestFlippingSliderRetainsPerfectControlPointType() public void TestFlippingSliderRetainsPerfectControlPointType()
{ {
OsuSelectionHandler selectionHandler = null; OsuSelectionHandler selectionHandler;
AddAssert("first control point perfect", () => slider.Path.ControlPoints[0].Type == PathType.PerfectCurve); AddAssert("first control point perfect", () => slider.Path.ControlPoints[0].Type == PathType.PerfectCurve);