1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Fix missed BDL case

This commit is contained in:
smoogipoo 2018-03-19 16:44:46 +09:00
parent e25d1f6982
commit 193142e901

View File

@ -20,7 +20,8 @@ namespace osu.Game.Tests.Visual
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent)
=> dependencies = new DependencyContainer(parent);
public TestCasePlaybackControl()
[BackgroundDependencyLoader]
private void load()
{
var clock = new DecoupleableInterpolatingFramedClock { IsCoupled = false };
dependencies.CacheAs<IAdjustableClock>(clock);
@ -35,7 +36,7 @@ namespace osu.Game.Tests.Visual
playback.Beatmap.Value = new TestWorkingBeatmap(new Beatmap());
Add(playback);
Child = playback;
}
}
}