From 08b7c3d5ad30bed5353c171cf52b74fbb31a20a5 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 23 Oct 2023 20:01:23 +0900 Subject: [PATCH] Remove test which makes less sense with new algorith --- .../SpinnerSpinHistoryTest.cs | 13 ------------- 1 file changed, 13 deletions(-) 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() {