1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Fix test nullability assertions

This commit is contained in:
Dean Herbert 2022-07-25 20:06:36 +09:00
parent 8a0c8f5fd8
commit 9c411c2250

View File

@ -764,13 +764,14 @@ namespace osu.Game.Tests.Database
// Second import matches first but contains one extra .osu file.
var secondImport = (await importer.ImportAsUpdate(new ProgressNotification(), new ImportTask(pathOriginal), firstImport.Value)).FirstOrDefault();
Assert.That(secondImport, Is.Not.Null);
Debug.Assert(secondImport != null);
Assert.That(realm.Realm.All<BeatmapInfo>(), Has.Count.EqualTo(12));
Assert.That(realm.Realm.All<BeatmapMetadata>(), Has.Count.EqualTo(12));
Assert.That(realm.Realm.All<BeatmapSetInfo>(), Has.Count.EqualTo(1));
// check the newly "imported" beatmap is not the original.
Assert.That(firstImport?.ID, Is.Not.EqualTo(secondImport?.ID));
Assert.That(firstImport.ID, Is.Not.EqualTo(secondImport.ID));
}
finally
{