1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 12:33:01 +08:00

Count() -> Count

This commit is contained in:
Dean Herbert 2018-02-09 18:02:28 +09:00
parent a771ca4077
commit 981fa379b7

View File

@ -103,7 +103,7 @@ namespace osu.Game.Tests.Beatmaps.IO
manager.Delete(imported.First());
Assert.IsTrue(manager.GetAllUsableBeatmapSets().Count == 0);
Assert.IsTrue(manager.QueryBeatmapSets(_ => true).ToList().Count() == 1);
Assert.IsTrue(manager.QueryBeatmapSets(_ => true).ToList().Count == 1);
Assert.IsTrue(manager.QueryBeatmapSets(_ => true).First().DeletePending);
temp = prepareTempCopy(osz_path);