1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 06:33:20 +08:00

Merge pull request #1411 from peppy/remove-thread-sleep

Remove no-longer-necessary Thread.Sleep
This commit is contained in:
Dan Balasescu 2017-10-24 11:33:53 +09:00 committed by GitHub
commit b79edf6791

View File

@ -102,10 +102,6 @@ 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;
}