1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-19 07:04:15 +08:00

Add thread sleep as a temporary workaround for failing tests

This commit is contained in:
Dean Herbert 2017-10-22 16:21:41 +09:00
parent 5b2219a692
commit aff30db89d

View File

@ -100,6 +100,10 @@ namespace osu.Game.Tests.Beatmaps.IO
waitForOrAssert(() => osu.IsLoaded, @"osu! failed to start in a reasonable amount of time");
// this is a temporary workaround for database transaction clashes.
// see https://github.com/aspnet/EntityFrameworkCore/issues/9994 for more information.
Thread.Sleep(1000);
return osu;
}