Merge pull request #1178 from peppy/headless-ftl

Make OsuTestCases use new non-realtime option
This commit is contained in:
Dean Herbert
2017-08-23 17:00:08 +09:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace osu.Desktop.Tests.Visual
[Test]
public override void RunTest()
{
using (var host = new HeadlessGameHost())
using (var host = new HeadlessGameHost(realtime: false))
host.Run(new OsuTestCaseTestRunner(this));
}