1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed broken test.

This commit is contained in:
Mark McDowall 2012-02-27 22:18:11 -08:00
parent 6574a2b065
commit bdadb66fcb

View File

@ -116,6 +116,9 @@ public void cleanup_should_delete_none_existing_files_remove_links_to_episodes()
Mocker.GetMock<MediaFileProvider>()
.Setup(e => e.Delete(It.IsAny<int>()));
Mocker.GetMock<ConfigProvider>()
.SetupGet(s => s.AutoIgnorePreviouslyDownloadedEpisodes)
.Returns(true);
//Act
Mocker.Resolve<DiskScanProvider>().CleanUp(episodes);