Merge pull request #887 from peppy/increase-ipc-timeout

Increase timeout in TestImportOverIPC
This commit is contained in:
Dan Balasescu 2017-06-01 10:22:40 +09:00 committed by GitHub
commit b8d070b29b

View File

@ -56,7 +56,7 @@ namespace osu.Game.Tests.Beatmaps.IO
Assert.IsTrue(File.Exists(temp)); Assert.IsTrue(File.Exists(temp));
var importer = new BeatmapIPCChannel(client); var importer = new BeatmapIPCChannel(client);
if (!importer.ImportAsync(temp).Wait(5000)) if (!importer.ImportAsync(temp).Wait(10000))
Assert.Fail(@"IPC took too long to send"); Assert.Fail(@"IPC took too long to send");
ensureLoaded(host); ensureLoaded(host);