mirror of https://github.com/ppy/osu
Mark the property as non-nullable.
This commit is contained in:
parent
d9addebc93
commit
ee7e7f2d3a
|
@ -15,7 +15,7 @@ namespace osu.Game.Tests.Mods
|
|||
[TestFixture]
|
||||
public class ModDifficultyAdjustTest
|
||||
{
|
||||
private TestModDifficultyAdjust testMod;
|
||||
private TestModDifficultyAdjust testMod = null!;
|
||||
|
||||
[SetUp]
|
||||
public void Setup()
|
||||
|
|
|
@ -17,8 +17,8 @@ public class ModTimeRampTest
|
|||
private const double start_time = 1000;
|
||||
private const double duration = 9000;
|
||||
|
||||
private TrackVirtual track;
|
||||
private OsuPlayfield playfield;
|
||||
private TrackVirtual track = null!;
|
||||
private OsuPlayfield playfield = null!;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
|
|
Loading…
Reference in New Issue