Mark mock track as nun-nullable because technically it should not accept the null track.

This commit is contained in:
andy840119 2022-11-05 16:17:20 +08:00
parent 5931e965c5
commit 6062641bf4
1 changed files with 1 additions and 2 deletions

View File

@ -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);
}