1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 14:12:56 +08:00

fix formatting and test

add missing line
This commit is contained in:
Aergwyn 2017-12-25 16:52:17 +01:00
parent bb4b5bebf9
commit 48e55a0686

View File

@ -26,6 +26,11 @@ namespace osu.Game.Tests.Visual
public TestCaseUserProfile()
{
Add(profile = new TestUserProfileOverlay());
}
protected override void LoadComplete()
{
base.LoadComplete();
AddStep("Show offline dummy", () => profile.ShowUser(new User
{
@ -83,7 +88,8 @@ namespace osu.Game.Tests.Visual
AddAssert("no supporter", () => profile.Header.SupporterTag.Alpha == 0);
}
private class TestUserProfileOverlay : UserProfileOverlay {
private class TestUserProfileOverlay : UserProfileOverlay
{
public new ProfileHeader Header => base.Header;
}
}