diff --git a/osu.Desktop.VisualTests/Tests/TestCaseUserRanks.cs b/osu.Desktop.Tests/Visual/TestCaseUserRanks.cs
similarity index 100%
rename from osu.Desktop.VisualTests/Tests/TestCaseUserRanks.cs
rename to osu.Desktop.Tests/Visual/TestCaseUserRanks.cs
diff --git a/osu.Desktop.Tests/osu.Desktop.Tests.csproj b/osu.Desktop.Tests/osu.Desktop.Tests.csproj
index aa862498d1..9210b5eb3a 100644
--- a/osu.Desktop.Tests/osu.Desktop.Tests.csproj
+++ b/osu.Desktop.Tests/osu.Desktop.Tests.csproj
@@ -109,6 +109,7 @@
+
diff --git a/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj b/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj
index 64fe3d4b95..8bba59207f 100644
--- a/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj
+++ b/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj
@@ -186,7 +186,6 @@
-
diff --git a/osu.Game/Overlays/Profile/Sections/Ranks/DrawableScore.cs b/osu.Game/Overlays/Profile/Sections/Ranks/DrawableScore.cs
index f74b6792ad..9279bd0156 100644
--- a/osu.Game/Overlays/Profile/Sections/Ranks/DrawableScore.cs
+++ b/osu.Game/Overlays/Profile/Sections/Ranks/DrawableScore.cs
@@ -156,25 +156,21 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
Children = new[]
{
- new TextAwesome
+ new SpriteIcon
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Icon = FontAwesome.fa_osu_mod_bg,
Colour = colour,
Shadow = true,
- TextSize = 30,
- UseFullGlyphHeight = false,
},
- new TextAwesome
+ new SpriteIcon
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Icon = icon,
Colour = OsuColour.Gray(84),
- TextSize = 18,
Position = new Vector2(0f, 2f),
- UseFullGlyphHeight = false,
},
};
}