1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Revert "Adopt HitObjectContainer change in a test"

This reverts commit f55aa016
This commit is contained in:
ekrctb 2021-05-04 16:45:24 +09:00
parent 913fc8c3bc
commit 39bccc5048

View File

@ -4,7 +4,6 @@
using JetBrains.Annotations;
using NUnit.Framework;
using osu.Framework.Testing;
using osu.Framework.Timing;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.UI;
@ -20,14 +19,7 @@ namespace osu.Game.Tests.Gameplay
[SetUp]
public void Setup() => Schedule(() =>
{
Child = container = new HitObjectContainer
{
Clock = new FramedClock(new ManualClock
{
// Make sure hit objects with `StartTime == 0` are alive
CurrentTime = -1
})
};
Child = container = new HitObjectContainer();
});
[Test]