1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 15:50:19 +08:00

Merge pull request #9588 from peppy/editor-fix-timing-screen-test

Fix timing screen test crashing due to missing dependency
This commit is contained in:
Dan Balasescu
2020-07-17 15:12:45 +09:00
committed by GitHub
Unverified
@@ -3,6 +3,7 @@
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Osu.Beatmaps;
using osu.Game.Screens.Edit;
using osu.Game.Screens.Edit.Timing;
@@ -13,6 +14,7 @@ namespace osu.Game.Tests.Visual.Editing
public class TestSceneTimingScreen : EditorClockTestScene
{
[Cached(typeof(EditorBeatmap))]
[Cached(typeof(IBeatSnapProvider))]
private readonly EditorBeatmap editorBeatmap;
public TestSceneTimingScreen()