Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/223ccb5a73d082c5a88f00cbf742ffe5efd3ccee
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
5 deletions
@ -1,4 +1,4 @@
using System.IO ;
using System.IO ;
using FizzWare.NBuilder ;
using Moq ;
using NUnit.Framework ;
@ -63,9 +63,8 @@ namespace NzbDrone.Core.Test.MediaFiles.MediaFileDeletionService
[Test]
public void should_throw_if_root_folder_does_not_exist ( )
{
ExceptionVerification . ExpectedWarns ( 1 ) ;
Assert . Throws < NzbDroneClientException > ( ( ) = > Subject . DeleteEpisodeFile ( _series , _episodeFile ) ) ;
ExceptionVerification . ExpectedWarns ( 1 ) ;
}
[Test]
@ -73,9 +72,8 @@ namespace NzbDrone.Core.Test.MediaFiles.MediaFileDeletionService
{
GivenRootFolderExists ( ) ;
ExceptionVerification . ExpectedWarns ( 1 ) ;
Assert . Throws < NzbDroneClientException > ( ( ) = > Subject . DeleteEpisodeFile ( _series , _episodeFile ) ) ;
ExceptionVerification . ExpectedWarns ( 1 ) ;
}
[Test]