From 2528dc5b957819c8ad73a916bad14526101bf30b Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 13 May 2014 22:18:02 +0200 Subject: [PATCH] Removed specials from test data to fix RefreshEpisodeService tests. --- src/NzbDrone.Core.Test/TvTests/RefreshEpisodeServiceFixture.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/NzbDrone.Core.Test/TvTests/RefreshEpisodeServiceFixture.cs b/src/NzbDrone.Core.Test/TvTests/RefreshEpisodeServiceFixture.cs index 7234166a4..b375ed4a2 100644 --- a/src/NzbDrone.Core.Test/TvTests/RefreshEpisodeServiceFixture.cs +++ b/src/NzbDrone.Core.Test/TvTests/RefreshEpisodeServiceFixture.cs @@ -24,6 +24,9 @@ namespace NzbDrone.Core.Test.TvTests public void TestFixture() { _gameOfThrones = Mocker.Resolve().GetSeriesInfo(121361);//Game of thrones + + // Remove specials. + _gameOfThrones.Item2.RemoveAll(v => v.SeasonNumber == 0); } private List GetEpisodes()