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

15 lines
412 B

using NzbDrone.Test.Common.AutoMoq;
namespace NzbDrone.Test.Common
{
public static class MockerExtensions
{
public static TInterface Resolve<TInterface, TService>(this AutoMoqer mocker)
where TService : TInterface
{
var service = mocker.Resolve<TService>();
mocker.SetConstant<TInterface>(service);
return service;
}
}
}