mirror of https://github.com/ppy/osu
Fix indention
This commit is contained in:
parent
9874ce49ce
commit
164cb66f6a
|
@ -35,7 +35,9 @@ public void TestDecodeSkinColours(bool hasColours, bool canFallback = true)
|
|||
}
|
||||
|
||||
List<Color4> expectedColors;
|
||||
|
||||
if (hasColours)
|
||||
{
|
||||
expectedColors = new List<Color4>
|
||||
{
|
||||
new Color4(142, 199, 255, 255),
|
||||
|
@ -43,8 +45,11 @@ public void TestDecodeSkinColours(bool hasColours, bool canFallback = true)
|
|||
new Color4(128, 255, 255, 255),
|
||||
new Color4(100, 100, 100, 100),
|
||||
};
|
||||
}
|
||||
else
|
||||
{
|
||||
expectedColors = SkinConfiguration.DefaultComboColours;
|
||||
}
|
||||
|
||||
Assert.AreEqual(expectedColors.Count, comboColors.Count);
|
||||
for (int i = 0; i < expectedColors.Count; i++)
|
||||
|
|
Loading…
Reference in New Issue