Fixed broken tests.

This commit is contained in:
Mark McDowall 2011-10-22 17:13:49 -07:00
commit a827199902
2 changed files with 9 additions and 3 deletions

View file

@ -26,6 +26,9 @@ namespace NzbDrone.Core.Test.ProviderTests
.Setup(c => c.GetEpisodeBySeries(It.IsAny<long>()))
.Returns(new List<Episode> { new Episode() });
mocker.GetMock<DiskProvider>()
.Setup(c => c.FolderExists(It.IsAny<string>()))
.Returns(true);
mocker.GetMock<MediaFileProvider>()
.Setup(c => c.GetSeriesFiles(It.IsAny<int>()))