Merge pull request #29402 from peppy/fix-recommender-test

Fix occasional test failures in `TestSceneBetmapRecommendations`
This commit is contained in:
Dan Balasescu 2024-08-13 18:25:01 +09:00 committed by GitHub
commit 50601544b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,8 +31,6 @@ namespace osu.Game.Tests.Visual.SongSelect
[SetUpSteps]
public override void SetUpSteps()
{
base.SetUpSteps();
AddStep("populate ruleset statistics", () =>
{
Dictionary<string, UserStatistics> rulesetStatistics = new Dictionary<string, UserStatistics>();
@ -68,6 +66,8 @@ namespace osu.Game.Tests.Visual.SongSelect
return 0;
}
}
base.SetUpSteps();
}
[Test]