episode detail is working but its a bit slow.

This commit is contained in:
kay.one
2013-03-03 15:18:43 -08:00
parent 4a4e440ec0
commit 9a738e3a65
16 changed files with 72 additions and 64 deletions
@@ -30,7 +30,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchTests
private SearchHistory _searchHistory;
private ProgressNotification _notification;
private IList<Episode> _episodes;
private List<Episode> _episodes;
[SetUp]
public void Setup()
@@ -50,7 +50,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchTests
_episodes = Builder<Episode>
.CreateListOfSize(1)
.Build();
.Build().ToList();
Mocker.GetMock<IEpisodeService>()
.Setup(s => s.GetEpisodesByParseResult(It.IsAny<EpisodeParseResult>()))