1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 15:03:13 +08:00

Fix indention

This commit is contained in:
iiSaLMaN 2019-11-07 16:13:10 +03:00
parent 9874ce49ce
commit 164cb66f6a

View File

@ -35,7 +35,9 @@ namespace osu.Game.Tests.Skins
} }
List<Color4> expectedColors; List<Color4> expectedColors;
if (hasColours) if (hasColours)
{
expectedColors = new List<Color4> expectedColors = new List<Color4>
{ {
new Color4(142, 199, 255, 255), new Color4(142, 199, 255, 255),
@ -43,8 +45,11 @@ namespace osu.Game.Tests.Skins
new Color4(128, 255, 255, 255), new Color4(128, 255, 255, 255),
new Color4(100, 100, 100, 100), new Color4(100, 100, 100, 100),
}; };
}
else else
{
expectedColors = SkinConfiguration.DefaultComboColours; expectedColors = SkinConfiguration.DefaultComboColours;
}
Assert.AreEqual(expectedColors.Count, comboColors.Count); Assert.AreEqual(expectedColors.Count, comboColors.Count);
for (int i = 0; i < expectedColors.Count; i++) for (int i = 0; i < expectedColors.Count; i++)