1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

Use int in ChannelListing test

This commit is contained in:
Jai Sharma 2022-03-09 00:52:33 +00:00
parent 7daa2d0ea4
commit 9720a06b16

View File

@ -72,7 +72,7 @@ namespace osu.Game.Tests.Visual.Online.NewChat
private Channel createRandomChannel()
{
var id = RNG.Next(0, 10000);
int id = RNG.Next(0, 10000);
return new Channel
{
Name = $"#channel-{id}",