1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 19:23:21 +08:00

Fix code style issues

This commit is contained in:
Dean Herbert 2019-12-12 17:36:37 +09:00
parent 7fdaf338f3
commit 76aa4f9fb2

View File

@ -23,7 +23,7 @@ namespace osu.Game.Tests.Visual.UserInterface
{ {
private TestModSelectOverlay modSelect; private TestModSelectOverlay modSelect;
Mod testCustomisableMod = new TestModCustomisable1(); private readonly Mod testCustomisableMod = new TestModCustomisable1();
[Test] [Test]
public void TestButtonShowsOnCustomisableMod() public void TestButtonShowsOnCustomisableMod()
@ -106,8 +106,8 @@ namespace osu.Game.Tests.Visual.UserInterface
public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => throw new NotImplementedException(); public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => throw new NotImplementedException();
public override string Description { get; } public override string Description { get; } = "test";
public override string ShortName { get; } public override string ShortName { get; } = "tst";
} }
} }