Use `int` in ChannelListing test

This commit is contained in:
Jai Sharma 2022-03-09 00:52:33 +00:00
parent 7daa2d0ea4
commit 9720a06b16
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public void TestAddRandomChannels()
private Channel createRandomChannel()
{
var id = RNG.Next(0, 10000);
int id = RNG.Next(0, 10000);
return new Channel
{
Name = $"#channel-{id}",