mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 00:09:55 +09:00
Remove APIFriend
This commit is contained in:
@ -7,9 +7,9 @@ using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Game.Online.API.Requests.Responses;
|
||||
using osu.Game.Overlays;
|
||||
using osu.Game.Overlays.Dashboard.Friends;
|
||||
using osu.Game.Users;
|
||||
|
||||
namespace osu.Game.Tests.Visual.UserInterface
|
||||
{
|
||||
@ -39,17 +39,17 @@ namespace osu.Game.Tests.Visual.UserInterface
|
||||
[Test]
|
||||
public void Populate()
|
||||
{
|
||||
AddStep("Populate", () => control.Populate(new List<APIFriend>
|
||||
AddStep("Populate", () => control.Populate(new List<User>
|
||||
{
|
||||
new APIFriend
|
||||
new User
|
||||
{
|
||||
IsOnline = true
|
||||
},
|
||||
new APIFriend
|
||||
new User
|
||||
{
|
||||
IsOnline = false
|
||||
},
|
||||
new APIFriend
|
||||
new User
|
||||
{
|
||||
IsOnline = false
|
||||
}
|
||||
|
Reference in New Issue
Block a user