1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-25 07:23:16 +00:00

Removed specials from test data to fix RefreshEpisodeService tests.

This commit is contained in:
Taloth Saldono 2014-05-13 22:18:02 +02:00
parent 7c5bc94f6e
commit 2528dc5b95

View file

@ -24,6 +24,9 @@ namespace NzbDrone.Core.Test.TvTests
public void TestFixture()
{
_gameOfThrones = Mocker.Resolve<TraktProxy>().GetSeriesInfo(121361);//Game of thrones
// Remove specials.
_gameOfThrones.Item2.RemoveAll(v => v.SeasonNumber == 0);
}
private List<Episode> GetEpisodes()