mirror of
https://github.com/ppy/osu
synced 2025-01-13 17:41:09 +00:00
Fix failing tests
This commit is contained in:
parent
e2591f154b
commit
a225a35f91
@ -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", () =>
|
||||
|
Loading…
Reference in New Issue
Block a user