Fix song select tests potentially failing due to difficulty panels not yet displayed

This commit is contained in:
Dean Herbert
2020-05-04 14:43:47 +09:00
parent 59dd523d27
commit a1cd007cad
2 changed files with 10 additions and 4 deletions

View File

@ -140,7 +140,7 @@ namespace osu.Game.Beatmaps
{
var beatmapIds = beatmapSet.Beatmaps.Where(b => b.OnlineBeatmapID.HasValue).Select(b => b.OnlineBeatmapID).ToList();
LogForModel(beatmapSet, "Validating online IDs...");
LogForModel(beatmapSet, $"Validating online IDs for {beatmapSet.Beatmaps.Count} beatmaps...");
// ensure all IDs are unique
if (beatmapIds.GroupBy(b => b).Any(g => g.Count() > 1))