Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/5eb7a8399625cd2fe66eb91a279b42b940b1bbfc
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
2 deletions
@ -46,13 +46,19 @@ namespace NzbDrone.Core.Test.UpdateTests
const string branch = "develop" ;
UseRealHttp ( ) ;
var recent = Subject . GetRecentUpdates ( branch , new Version ( 2 , 0 ) ) ;
var recentWithChanges = recent . Where ( c = > c . Changes ! = null ) ;
recent . Should ( ) . NotBeEmpty ( ) ;
recent . Should ( ) . OnlyContain ( c = > c . Hash . IsNotNullOrWhiteSpace ( ) ) ;
recent . Should ( ) . OnlyContain ( c = > c . FileName . Contains ( "Radarr" ) ) ;
recent . Should ( ) . OnlyContain ( c = > c . ReleaseDate . Year > = 2014 ) ;
recent . Where ( c = > c . Changes ! = null ) . Should ( ) . OnlyContain ( c = > c . Changes . New ! = null ) ;
recent . Where ( c = > c . Changes ! = null ) . Should ( ) . OnlyContain ( c = > c . Changes . Fixed ! = null ) ;
if ( recentWithChanges . Any ( ) )
{
recentWithChanges . Should ( ) . OnlyContain ( c = > c . Changes . New ! = null ) ;
recentWithChanges . Should ( ) . OnlyContain ( c = > c . Changes . Fixed ! = null ) ;
}
recent . Should ( ) . OnlyContain ( c = > c . Branch = = branch ) ;
}
}