Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/d82edba26c3605c667e896f4da7c4c0bb61202c3 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed broken unit test for parsing future daily shows.

pull/3113/head
Mark McDowall 14 years ago
parent fbc0a561ca
commit d82edba26c

@ -184,7 +184,7 @@ namespace NzbDrone.Core.Test
[Test]
public void parse_daily_should_fail_if_episode_is_far_in_future()
{
var title = string.Format("{0}.{1}.{2} - Denis Leary - HD TV.mkv", DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.AddDays(2).Day);
var title = string.Format("{0:yyyy.MM.dd} - Denis Leary - HD TV.mkv", DateTime.Now.AddDays(2));
Parser.ParseTitle(title).Should().BeNull();

Loading…
Cancel
Save