Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/8ba42106c45e9a08cacb9d9d1b33403e5174fc68
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
4 deletions
@ -324,12 +324,15 @@ namespace NzbDrone.Core.Test
public void scan_media_job_should_not_scan_new_series ( )
{
var mocker = new AutoMoqer ( ) ;
IQueryable < Series > fakeSeries = Builder < Series > . CreateListOfSize ( 2 )
. WhereTheFirst ( 1 ) . Has ( c = > c . Episodes = new List < Episode > ( ) )
. AndTheNext ( 1 ) . Has ( c = > c . Episodes = Builder < Episode > . CreateListOfSize ( 10 ) . Build ( ) )
. Build ( ) . AsQueryable ( ) ;
mocker . GetMock < SeriesProvider > ( )
. Setup ( c = > c . GetAllSeries ( ) )
. Returns ( Builder < Series > . CreateListOfSize ( 2 )
. WhereTheFirst ( 1 ) . Has ( c = > c . LastInfoSync = DateTime . Now ) . Build ( ) . AsQueryable ( ) ) ;
. Setup ( c = > c . GetAllSeries ( ) ) . Returns ( fakeSeries ) ;
mocker . GetMock < MediaFileProvider > ( MockBehavior . Strict )
. Setup ( c = > c . Scan ( It. Is < Series > ( s = > s . LastInfoSync ! = null ) ) ) . Returns ( new List < EpisodeFile > ( ) ) . Verifiable ( ) ;
. Setup ( c = > c . Scan ( fakeSeries. ToList ( ) [ 1 ] ) ) . Returns ( new List < EpisodeFile > ( ) ) . Verifiable ( ) ;
mocker . Resolve < DiskScanJob > ( ) . Start ( new ProgressNotification ( "test" ) , 0 ) ;