Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/1c57c52474799fb7bcba3c5f08098e348f214590?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
7 deletions
@ -236,7 +236,7 @@ namespace Jellyfin.Naming.Tests.Video
}
[Fact]
public void Test FalsePositiv e( )
public void Test MissingParttyp e( )
{
var files = new [ ]
{
@ -248,9 +248,8 @@ namespace Jellyfin.Naming.Tests.Video
var result = StackResolver . ResolveFiles ( files , _namingOptions ) . ToList ( ) ;
Assert . Single ( result ) ;
TestStackInfo ( result [ 0 ] , "300" , 3 ) ;
// There should be no stack, because all files should be treated as separate movies
Assert . Empty ( result ) ;
}
[Fact]
@ -297,11 +296,11 @@ namespace Jellyfin.Naming.Tests.Video
var result = StackResolver . ResolveFiles ( files , _namingOptions ) . ToList ( ) ;
Assert . Equal ( 3 , result . Count ) ;
// Only 'Bad Boys (2006)' and '300 (2006)' should be in the stack
Assert . Equal ( 2 , result . Count ) ;
TestStackInfo ( result [ 0 ] , "300 (2006)" , 4 ) ;
TestStackInfo ( result [ 1 ] , "300" , 3 ) ;
TestStackInfo ( result [ 2 ] , "Bad Boys (2006)" , 4 ) ;
TestStackInfo ( result [ 1 ] , "Bad Boys (2006)" , 4 ) ;
}
[Fact]