Skip to content

Commit

Permalink
Fix Resume overlay test
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Apr 13, 2024
1 parent 66b7125 commit 592f137
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions osu.Game.Rulesets.Tau.Tests/TestSceneResumeOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;

Check failure on line 4 in osu.Game.Rulesets.Tau.Tests/TestSceneResumeOverlay.cs

View workflow job for this annotation

GitHub Actions / Code Quality

Using directive is not required by the code and can be safely removed in osu.Game.Rulesets.Tau.Tests\TestSceneResumeOverlay.cs on line 4
using osu.Game.Rulesets.Tau.UI;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play;
using osu.Game.Tests.Visual;

Expand All @@ -16,7 +17,7 @@ public partial class TestSceneResumeOverlay : OsuManualInputManagerTestScene
public TestSceneResumeOverlay()
{
ManualTauInputManager tauInputManager;
CursorContainer cursor;
GameplayCursorContainer cursor;
ResumeOverlay resume;

bool resumeFired = false;
Expand All @@ -25,7 +26,7 @@ public TestSceneResumeOverlay()
{
Children = new Drawable[]
{
cursor = new CursorContainer(),
cursor = new GameplayCursorContainer(),
resume = new TauResumeOverlay()
{
GameplayCursor = cursor
Expand Down

0 comments on commit 592f137

Please sign in to comment.