Fix test failure in TestSceneMultiplayerGameplayLeaderboard

The transfer of users was not accounting for the fact that the
`StartPlay` calls are now scheduled and not necessarily run in time.
This commit is contained in:
Dean Herbert
2021-05-27 19:57:19 +09:00
parent 3e5de9e5a8
commit 121dd175e6
2 changed files with 9 additions and 2 deletions

View File

@ -3,6 +3,7 @@
#nullable enable
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
@ -53,6 +54,8 @@ namespace osu.Game.Tests.Visual.Spectator
});
}
public new void Schedule(Action action) => base.Schedule(action);
/// <summary>
/// Sends frames for an arbitrary user.
/// </summary>