mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix indention
This commit is contained in:
@ -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++)
|
||||||
|
Reference in New Issue
Block a user