Skip to content

Commit c2e1c91

Browse files
authored
Merge pull request #22315 from frenzibyte/fix-test-browser-broken
Fix test browsers on longer working after framework update
2 parents 2a9b1ea + c48af79 commit c2e1c91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

osu.Game.Tournament.Tests/TournamentTestBrowser.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected override void LoadComplete()
2121
{
2222
Colour = OsuColour.Gray(0.5f),
2323
Depth = 10
24-
}, AddInternal);
24+
}, Add);
2525

2626
// Have to construct this here, rather than in the constructor, because
2727
// we depend on some dependencies to be loaded within OsuGameBase.load().

osu.Game/Tests/OsuTestBrowser.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected override void LoadComplete()
2222
{
2323
Depth = 10,
2424
RelativeSizeAxes = Axes.Both,
25-
}, AddInternal);
25+
}, Add);
2626

2727
// Have to construct this here, rather than in the constructor, because
2828
// we depend on some dependencies to be loaded within OsuGameBase.load().

0 commit comments

Comments
 (0)