1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +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
{
private TestDrawableRuleset testDrawableRuleset = new TestDrawableRuleset();
private TestDrawableRuleset testDrawableRuleset;
[SetUp]
public void Setup()
{
testDrawableRuleset = new TestDrawableRuleset();
}
[Test]
public void TestResultIfOnlyParentHitWindowIsEmpty()