Fix tests on CI

This commit is contained in:
Dean Herbert
2019-10-10 17:39:41 +09:00
parent e66f9adb86
commit 8df2e359c4
3 changed files with 7 additions and 7 deletions

View File

@ -456,9 +456,9 @@ namespace osu.Game.Tests.Beatmaps.IO
}
}
public static async Task<BeatmapSetInfo> LoadOszIntoOsu(OsuGameBase osu, string path = null)
public static async Task<BeatmapSetInfo> LoadOszIntoOsu(OsuGameBase osu, string path = null, bool virtualTrack = false)
{
var temp = path ?? TestResources.GetTestBeatmapForImport();
var temp = path ?? TestResources.GetTestBeatmapForImport(virtualTrack);
var manager = osu.Dependencies.Get<BeatmapManager>();