Remove DT from KPS test

This commit is contained in:
Ryuki
2022-08-05 17:04:33 +02:00
parent b4e0fa7c53
commit 0c07df2c26

View File

@ -3,14 +3,10 @@
#nullable disable #nullable disable
using System.Linq;
using AutoMapper.Internal;
using NUnit.Framework; using NUnit.Framework;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Game.Rulesets; using osu.Game.Rulesets;
using osu.Game.Rulesets.Mania; using osu.Game.Rulesets.Mania;
using osu.Game.Rulesets.Mania.Mods;
using osu.Game.Rulesets.UI; using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play; using osu.Game.Screens.Play;
using osu.Game.Screens.Play.HUD.KPSCounter; using osu.Game.Screens.Play.HUD.KPSCounter;
@ -76,18 +72,6 @@ namespace osu.Game.Tests.Visual.Gameplay
InputManager.Key(Key.K); InputManager.Key(Key.K);
}); });
AddAssert("KPS = 8", () => counter.Current.Value == 8); AddAssert("KPS = 8", () => counter.Current.Value == 8);
AddUntilStep("Wait for KPS cooldown", () => counter.Current.Value <= 0);
AddStep("Add DT", () =>
{
var dt = new ManiaModDoubleTime
{
SpeedChange =
{
Value = 2
}
};
Player.Mods.Value.Concat((dt.Yield()).ToArray());
});
} }
} }
} }