mirror of https://github.com/ppy/osu
Mark mock track as nun-nullable because technically it should not accept the null track.
This commit is contained in:
parent
5931e965c5
commit
6062641bf4
|
@ -5,7 +5,6 @@
|
|||
using Moq;
|
||||
using NUnit.Framework;
|
||||
using osu.Framework.Audio.Track;
|
||||
using osu.Framework.Extensions.ObjectExtensions;
|
||||
using osu.Framework.Timing;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Rulesets.Edit;
|
||||
|
@ -42,7 +41,7 @@ public void TestMissing()
|
|||
|
||||
var mock = new Mock<IWorkingBeatmap>();
|
||||
mock.SetupGet(w => w.Beatmap).Returns(beatmap);
|
||||
mock.SetupGet(w => w.Track).Returns(default(Track?).AsNonNull());
|
||||
mock.SetupGet(w => w.Track).Returns((Track)null!);
|
||||
|
||||
Assert.That(check.Run(new BeatmapVerifierContext(beatmap, mock.Object)), Is.Empty);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue