diff --git a/osu.Game.Rulesets.Osu.Tests/SpinnerSpinHistoryTest.cs b/osu.Game.Rulesets.Osu.Tests/SpinnerSpinHistoryTest.cs index c20a7bbfd9..cd54873d36 100644 --- a/osu.Game.Rulesets.Osu.Tests/SpinnerSpinHistoryTest.cs +++ b/osu.Game.Rulesets.Osu.Tests/SpinnerSpinHistoryTest.cs @@ -118,19 +118,6 @@ namespace osu.Game.Rulesets.Osu.Tests Assert.That(history.TotalRotation, Is.EqualTo(180)); } - [Test] - public void TestRewindIntoSegmentThatHasNotCrossedZero() - { - history.ReportDelta(1000, -180); - Assert.That(history.TotalRotation, Is.EqualTo(180)); - history.ReportDelta(1500, 90); - Assert.That(history.TotalRotation, Is.EqualTo(180)); - history.ReportDelta(2000, 450); - Assert.That(history.TotalRotation, Is.EqualTo(360)); - history.ReportDelta(1750, -45); - Assert.That(history.TotalRotation, Is.EqualTo(315)); - } - [Test] public void TestRewindOverDirectionChange() {