1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 04:41:54 +08:00

Merge pull request #5170 from nyquillerium/hyper-dash-fix

Fix TestSceneHyperDash in test browser
This commit is contained in:
Dean Herbert
2019-06-28 00:27:36 +09:00
committed by GitHub
Unverified
@@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Tests.Visual;
@@ -17,8 +16,8 @@ namespace osu.Game.Rulesets.Catch.Tests
{
}
[BackgroundDependencyLoader]
private void load()
[Test]
public void TestHyperDash()
{
AddAssert("First note is hyperdash", () => Beatmap.Value.Beatmap.HitObjects[0] is Fruit f && f.HyperDash);
}