mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Increase amount of test sets
This commit is contained in:
@ -87,8 +87,9 @@ namespace osu.Game.Tests.Visual.SongSelect
|
||||
public void TestTraversalHold()
|
||||
{
|
||||
var sets = new List<BeatmapSetInfo>();
|
||||
const int create_this_many_sets = 200;
|
||||
|
||||
for (int i = 0; i < 20; i++)
|
||||
for (int i = 0; i < create_this_many_sets; i++)
|
||||
{
|
||||
var set = createTestBeatmapSet(i);
|
||||
sets.Add(set);
|
||||
@ -109,7 +110,7 @@ namespace osu.Game.Tests.Visual.SongSelect
|
||||
waitForSelection(amount + 1);
|
||||
}
|
||||
|
||||
for (int i = 1; i < 15; i += i)
|
||||
for (int i = 1; i < create_this_many_sets; i += i)
|
||||
{
|
||||
selectNextAndAssert(i);
|
||||
}
|
||||
|
Reference in New Issue
Block a user