Fix testcases

This commit is contained in:
smoogipoo
2018-03-15 18:24:57 +09:00
parent d05947ef48
commit 8fbaa86e64
5 changed files with 84 additions and 67 deletions

View File

@ -4,6 +4,7 @@
using System;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Timing;
using osu.Game.Beatmaps;
using osu.Game.Screens.Edit.Screens.Compose;
@ -19,7 +20,9 @@ namespace osu.Game.Tests.Visual
{
random = new Random(1337);
Add(compose = new Compose());
var clock = new DecoupleableInterpolatingFramedClock { IsCoupled = false };
Add(compose = new Compose(clock, clock));
AddStep("Next beatmap", nextBeatmap);
}