Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/2969decf957071df0aec210fd775644f5d4d3b03
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
8 deletions
@ -33,7 +33,7 @@ namespace NzbDrone.Core.Test.MusicTests
private void GivenAlbumLastRefreshedRecently ( )
{
_album . LastInfoSync = DateTime . UtcNow . AddHours ( - 1 ) ;
_album . LastInfoSync = DateTime . UtcNow . AddHours ( - 7 ) ;
}
private void GivenRecentlyReleased ( )
@ -47,7 +47,7 @@ namespace NzbDrone.Core.Test.MusicTests
}
[Test]
public void should_return_false_if_album_last_refreshed_less_than_ 6 _hours_ago( )
public void should_return_false_if_album_last_refreshed_less_than_ 12 _hours_ago( )
{
GivenAlbumLastRefreshedRecently ( ) ;
@ -44,14 +44,14 @@ namespace NzbDrone.Core.Test.MusicTests
_artist . LastInfoSync = DateTime . UtcNow . AddDays ( - 1 ) ;
}
private void GivenArtistLastRefreshed HalfADay Ago( )
private void GivenArtistLastRefreshed ThreeDays Ago( )
{
_artist . LastInfoSync = DateTime . UtcNow . Add Hours( - 12 ) ;
_artist . LastInfoSync = DateTime . UtcNow . Add Days( - 3 ) ;
}
private void GivenArtistLastRefreshedRecently ( )
{
_artist . LastInfoSync = DateTime . UtcNow . AddHours ( - 1 ) ;
_artist . LastInfoSync = DateTime . UtcNow . AddHours ( - 7 ) ;
}
private void GivenRecentlyAired ( )
@ -68,15 +68,15 @@ namespace NzbDrone.Core.Test.MusicTests
}
[Test]
public void should_return_true_if_running_artist_last_refreshed_more_than_ 6 _hours_ago( )
public void should_return_true_if_running_artist_last_refreshed_more_than_ 24 _hours_ago( )
{
GivenArtistLastRefreshed HalfADay Ago( ) ;
GivenArtistLastRefreshed ThreeDays Ago( ) ;
Subject . ShouldRefresh ( _artist ) . Should ( ) . BeTrue ( ) ;
}
[Test]
public void should_return_false_if_running_artist_last_refreshed_less_than_ 6 _hours_ago( )
public void should_return_false_if_running_artist_last_refreshed_less_than_ 12 _hours_ago( )
{
GivenArtistLastRefreshedRecently ( ) ;