Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/a22c0499d5e01ccfe45fcab5eb6331f056ca71d8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
3 deletions
@ -24,7 +24,6 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("The Real Housewives of Some Place - S01E01 - Why are we doing this?", 0)]
public void should_parse_reality_from_title ( string title , int reality )
{
//TODO: re-enable this when we have a reliable way to determine real
QualityParser . ParseQuality ( title ) . Revision . Real . Should ( ) . Be ( reality ) ;
}
@ -41,6 +40,9 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("[Hatsuyuki] Tokyo Ghoul - 07 [ v2 ] [ 848 x480 ] [ 23D 8F 455 ] . avi ", 2)]
[TestCase("[DeadFish] Barakamon - 01 v3 [ 720 p ] [ AAC ] ", 3)]
[TestCase("[DeadFish] Momo Kyun Sword - 01 v4 [ 720 p ] [ AAC ] ", 4)]
[TestCase("[Vivid-Asenshi] Akame ga Kill - 04 v2 [ 266 EE983 ] ", 2)]
[TestCase("[Vivid-Asenshi] Akame ga Kill - 03 v2 [ 66 A05817 ] ", 2)]
[TestCase("[Vivid-Asenshi] Akame ga Kill - 02 v2 [ 1F 67 AB55 ] ", 2)]
public void should_parse_version_from_title ( string title , int version )
{
QualityParser . ParseQuality ( title ) . Revision . Version . Should ( ) . Be ( version ) ;
@ -1,5 +1,4 @@
using System ;
using FluentAssertions ;
using FluentAssertions ;
using NUnit.Framework ;
using NzbDrone.Core.Parser ;
using NzbDrone.Core.Qualities ;