diff --git a/tests/Camille.RiotGames.Test/ApiComboFeaturedGamesSummonerCurrentGameV4Test.cs b/tests/Camille.RiotGames.Test/ApiComboFeaturedGamesSummonerCurrentGameV4Test.cs index 515a56e1..942b7dc4 100644 --- a/tests/Camille.RiotGames.Test/ApiComboFeaturedGamesSummonerCurrentGameV4Test.cs +++ b/tests/Camille.RiotGames.Test/ApiComboFeaturedGamesSummonerCurrentGameV4Test.cs @@ -4,6 +4,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting; using Camille.Enums; using Camille.RiotGames.SpectatorV4; +using System; namespace Camille.RiotGames.Test { @@ -66,7 +67,10 @@ public static void CheckFeatured(FeaturedGames featured) { Assert.IsNotNull(featured); Assert.IsNotNull(featured.GameList); - Assert.AreEqual(5, featured.GameList.Length); + if (0 == featured.GameList.Length) + { + Console.Error.WriteLine("Warning: featured game list is empty."); + } foreach (var gameInfo in featured.GameList) { Assert.IsNotNull(gameInfo);