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

Fixed update tests

pull/6/head
Mark McDowall 10 years ago
parent 9792cff50d
commit 8a41a4c91e

@ -42,7 +42,7 @@ namespace NzbDrone.Core.Test.UpdateTests
recent.Should().NotBeEmpty();
recent.Should().OnlyContain(c => c.Hash.IsNotNullOrWhiteSpace());
recent.Should().OnlyContain(c => c.FileName.Contains("Drone.master.2"));
recent.Should().OnlyContain(c => c.ReleaseDate.Year == 2014);
recent.Should().OnlyContain(c => c.ReleaseDate.Year >= 2014);
recent.Where(c => c.Changes != null).Should().OnlyContain(c => c.Changes.New != null);
recent.Where(c => c.Changes != null).Should().OnlyContain(c => c.Changes.Fixed != null);
recent.Should().OnlyContain(c => c.Branch == branch);

Loading…
Cancel
Save