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

Fixed another flaky test.

pull/2250/merge v2.0.0.5054
Taloth Saldono 8 years ago
parent df3c6ed572
commit cf7b8455d4

@ -85,7 +85,7 @@ namespace NzbDrone.Core.Test.Housekeeping.Housekeepers
Mocker.GetMock<IDownloadClientStatusRepository>()
.Verify(v => v.UpdateMany(
It.Is<List<DownloadClientStatus>>(i => i.All(
s => s.MostRecentFailure.Value < DateTime.UtcNow))
s => s.MostRecentFailure.Value <= DateTime.UtcNow))
)
);
}

Loading…
Cancel
Save