From 0316ec3098affd3f3bf8362836fc8a1a19b1a973 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 24 Oct 2017 09:48:02 +0900 Subject: [PATCH] Remove no-longer-necessary Thread.Sleep --- osu.Game.Tests/Beatmaps/IO/ImportBeatmapTest.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/osu.Game.Tests/Beatmaps/IO/ImportBeatmapTest.cs b/osu.Game.Tests/Beatmaps/IO/ImportBeatmapTest.cs index 77a1688730..77d78b8bd6 100644 --- a/osu.Game.Tests/Beatmaps/IO/ImportBeatmapTest.cs +++ b/osu.Game.Tests/Beatmaps/IO/ImportBeatmapTest.cs @@ -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; }