Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/eb5de4a3fa4efe54340a88843273c1c137612636
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
0 additions and
22 deletions
@ -147,27 +147,5 @@ namespace NzbDrone.Core.Test.MediaFiles
ExceptionVerification . ExpectedWarns ( 1 ) ;
}
[Test]
public void should_not_mark_trackeddownload_as_completed_if_import_rejected ( )
{
GivenValidQueueItem ( ) ;
GivenRejectedImport ( ) ;
Subject . Execute ( new DownloadedEpisodesScanCommand ( ) { Path = _downloadFolder , DownloadClientId = "sab1" } ) ;
_trackedDownload . State . Should ( ) . Be ( TrackedDownloadState . Downloading ) ;
}
[Test]
public void should_mark_trackeddownload_as_completed_if_import_skipped ( )
{
GivenValidQueueItem ( ) ;
GivenRejectedImport ( ) ;
Subject . Execute ( new DownloadedEpisodesScanCommand ( ) { Path = _downloadFolder , DownloadClientId = "sab1" } ) ;
_trackedDownload . State . Should ( ) . Be ( TrackedDownloadState . Imported ) ;
}
}
}