Skip to content

Commit

Permalink
Fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
smoogipoo committed Dec 8, 2020
1 parent 02571ec commit 9d926de
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions osu.Game.Rulesets.Catch.Tests/TestSceneCatcherArea.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.Objects.Drawables;
using osu.Game.Rulesets.Catch.UI;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Scoring;

namespace osu.Game.Rulesets.Catch.Tests
Expand Down Expand Up @@ -58,7 +57,7 @@ private void attemptCatch(Fruit fruit)

Schedule(() =>
{
area.OnNewResult(drawable, new JudgementResult(fruit, new CatchJudgement())
area.OnNewResult(drawable, new CatchJudgementResult(fruit, new CatchJudgement())
{
Type = area.MovableCatcher.CanCatch(fruit) ? HitResult.Great : HitResult.Miss
});
Expand Down

0 comments on commit 9d926de

Please sign in to comment.