1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 20:22:55 +08:00

Increase timeout in TestImportOverIPC

Has been failing CI randomly, so let's increase the timeout a bit.
This commit is contained in:
Dean Herbert 2017-05-31 15:51:21 +09:00
parent 013e9d5c69
commit 0f59645e17

View File

@ -56,7 +56,7 @@ namespace osu.Game.Tests.Beatmaps.IO
Assert.IsTrue(File.Exists(temp));
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");
ensureLoaded(host);