diff --git a/osu.Game.Tournament.Tests/TestCaseBeatmapPanel.cs b/osu.Game.Tournament.Tests/TestCaseBeatmapPanel.cs
index d6c9e0c901..93068f6224 100644
--- a/osu.Game.Tournament.Tests/TestCaseBeatmapPanel.cs
+++ b/osu.Game.Tournament.Tests/TestCaseBeatmapPanel.cs
@@ -1,6 +1,8 @@
 // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
 // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
 
+using System;
+using System.Collections.Generic;
 using osu.Framework.Allocation;
 using osu.Framework.Graphics;
 using osu.Game.Beatmaps;
@@ -21,6 +23,11 @@ namespace osu.Game.Tournament.Tests
         [Resolved]
         private RulesetStore rulesets { get; set; } = null;
 
+        public override IReadOnlyList<Type> RequiredTypes => new[]
+        {
+            typeof(TournamentBeatmapPanel),
+        };
+
         [BackgroundDependencyLoader]
         private void load()
         {