Add test data to db for VisualTests

Also fixes the broken IPC condition
This commit is contained in:
Drew DeVault
2016-10-24 14:57:00 -04:00
parent d559903ebc
commit 063fdd9a2d
6 changed files with 100 additions and 23 deletions

View File

@ -25,7 +25,7 @@ namespace osu.Desktop
var importer = new BeatmapImporter(host);
foreach (var file in args)
if (importer.Import(file).Wait(1000))
if (!importer.Import(file).Wait(1000))
throw new TimeoutException(@"IPC took too long to send");
Console.WriteLine(@"Sent import requests to running instance");
}