1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 14:52:55 +08:00

Fix incorrect thread usage of ruleset in tournament DataLoadTest

This commit is contained in:
Dean Herbert 2022-01-18 12:24:42 +09:00
parent b9ec860cf2
commit 014c840d80

View File

@ -35,9 +35,9 @@ namespace osu.Game.Tournament.Tests.NonVisual
public class TestTournament : TournamentGameBase public class TestTournament : TournamentGameBase
{ {
[BackgroundDependencyLoader] protected override void LoadComplete()
private void load()
{ {
base.LoadComplete();
Ruleset.Value = new RulesetInfo(); // not available Ruleset.Value = new RulesetInfo(); // not available
} }
} }