1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-05 05:43:21 +08:00

Fix inspection (create a new ruleset every time)

This commit is contained in:
smoogipoo 2021-07-05 10:13:01 +09:00
parent 216e52d6d0
commit cc877f88e2

View File

@ -18,7 +18,13 @@ namespace osu.Game.Tests.NonVisual
{ {
public class FirstAvailableHitWindowsTest public class FirstAvailableHitWindowsTest
{ {
private TestDrawableRuleset testDrawableRuleset = new TestDrawableRuleset(); private TestDrawableRuleset testDrawableRuleset;
[SetUp]
public void Setup()
{
testDrawableRuleset = new TestDrawableRuleset();
}
[Test] [Test]
public void TestResultIfOnlyParentHitWindowIsEmpty() public void TestResultIfOnlyParentHitWindowIsEmpty()