Fix failing tests

This commit is contained in:
Dean Herbert 2019-12-03 16:18:36 +09:00
parent e2591f154b
commit a225a35f91

View File

@ -224,10 +224,13 @@ namespace osu.Game.Tests.Visual.Online
foreach (var s in allScores.Scores)
{
s.Statistics.Add("count_300", RNG.Next(2000));
s.Statistics.Add("count_100", RNG.Next(2000));
s.Statistics.Add("count_50", RNG.Next(2000));
s.Statistics.Add("count_miss", RNG.Next(2000));
s.Statistics = new Dictionary<string, int>
{
{ "count_300", RNG.Next(2000) },
{ "count_100", RNG.Next(2000) },
{ "count_50", RNG.Next(2000) },
{ "count_miss", RNG.Next(2000) }
};
}
AddStep("Load all scores", () =>