Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/d1de6c1b2c883db3553dd27c3928401a490d8fe8/NzbDrone.Core.Test/UpdateTests/UpdatePackageProviderFixture.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core.Test/UpdateTests/UpdatePackageProviderFixtur...

23 lines
576 B

using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Core.Update;
12 years ago
using System.Linq;
namespace NzbDrone.Core.Test.UpdateTests
{
public class UpdatePackageProviderFixture : CoreTest<UpdatePackageProvider>
{
12 years ago
[Test]
public void should_get_list_of_available_updates()
12 years ago
{
UseRealHttp();
Mocker.GetMock<IConfigFileProvider>().SetupGet(c => c.Branch).Returns("master");
12 years ago
Subject.GetLatestUpdate().Should().BeNull();
12 years ago
}
}
}