Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/1b2fe6e8423ab1818f502d1f22547f61c9613eff You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed broken tests

pull/19/head
Mark McDowall 13 years ago
parent 4176158fdf
commit 1b2fe6e842

@ -50,6 +50,9 @@ namespace NzbDrone.Core.Test.JobTests
Mocker.GetMock<BannerDownloadJob>()
.Setup(j => j.Start(notification, It.IsAny<int>(), 0));
Mocker.GetMock<XemUpdateJob>()
.Setup(j => j.Start(notification, It.IsAny<int>(), 0));
Mocker.GetMock<UpdateInfoJob>()
.Setup(j => j.Start(notification, series[0].SeriesId, 0))
.Callback(() => series[0].LastInfoSync = DateTime.Now);
@ -123,6 +126,9 @@ namespace NzbDrone.Core.Test.JobTests
Mocker.GetMock<MediaFileProvider>()
.Setup(s => s.GetSeriesFiles(It.IsAny<int>())).Returns(new List<EpisodeFile>());
Mocker.GetMock<XemUpdateJob>()
.Setup(j => j.Start(notification, series[0].SeriesId, 0));
//Act
Mocker.Resolve<ImportNewSeriesJob>().Start(notification, 0, 0);

Loading…
Cancel
Save