1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

fixup! Fix incorrect access definitions

This commit is contained in:
Dean Herbert 2018-10-14 03:05:34 +09:00
parent c4b486f1d4
commit b17ead22a3

View File

@ -16,10 +16,10 @@ namespace osu.Game.Tournament.Tests
public class TestCaseBeatmapPanel : OsuTestCase
{
[Resolved]
private APIAccess api { get; set; }
private APIAccess api { get; set; } = null;
[Resolved]
private RulesetStore rulesets { get; set; }
private RulesetStore rulesets { get; set; } = null;
[BackgroundDependencyLoader]
private void load()