Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/a39b36d157142fae0faab37ed397bb8e6be3e449
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
4 deletions
@ -57,12 +57,17 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.RTorrentTests
protected void GivenSuccessfulDownload ( )
{
Mocker . GetMock < IRTorrentProxy > ( )
. Setup ( s = > s . AddTorrentFromUrl ( It . IsAny < string > ( ) , It . IsAny < RTorrentSettings > ( ) ) )
. Callback ( PrepareClientToReturnCompletedItem ) ;
. Setup ( s = > s . AddTorrentFromUrl ( It . IsAny < string > ( ) , It . IsAny < RTorrentSettings > ( ) ) )
. Callback ( PrepareClientToReturnCompletedItem ) ;
Mocker . GetMock < IRTorrentProxy > ( )
. Setup ( s = > s . AddTorrentFromFile ( It . IsAny < string > ( ) , It . IsAny < byte [ ] > ( ) , It . IsAny < RTorrentSettings > ( ) ) )
. Callback ( PrepareClientToReturnCompletedItem ) ;
. Setup ( s = > s . AddTorrentFromFile ( It . IsAny < string > ( ) , It . IsAny < byte [ ] > ( ) , It . IsAny < RTorrentSettings > ( ) ) )
. Callback ( PrepareClientToReturnCompletedItem ) ;
Mocker . GetMock < IRTorrentProxy > ( )
. Setup ( s = > s . HasHashTorrent ( It . IsAny < string > ( ) , It . IsAny < RTorrentSettings > ( ) ) )
. Returns ( true ) ;
}
protected virtual void GivenTorrents ( List < RTorrentTorrent > torrents )