Fix test setting invalid TimeOffset

This commit is contained in:
ekrctb 2023-02-09 17:43:04 +09:00
parent 258de3b2d8
commit 5ddaf8ea3c
1 changed files with 7 additions and 1 deletions

View File

@ -22,12 +22,18 @@ public partial class TestSceneUnstableRateCounter : OsuTestScene
[Cached(typeof(ScoreProcessor))]
private TestScoreProcessor scoreProcessor = new TestScoreProcessor();
private readonly OsuHitWindows hitWindows = new OsuHitWindows();
private readonly OsuHitWindows hitWindows;
private UnstableRateCounter counter;
private double prev;
public TestSceneUnstableRateCounter()
{
hitWindows = new OsuHitWindows();
hitWindows.SetDifficulty(5);
}
[SetUpSteps]
public void SetUp()
{