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

PerformSearchFixture refactoring

pull/4/head
kay.one 14 years ago
parent 5522466497
commit 4bd226f7c4

@ -2,6 +2,7 @@
using NUnit.Framework;
using Ninject;
using NzbDrone.Common;
using NzbDrone.Core.Model.Notification;
using NzbDrone.Test.Common;
using PetaPoco;
@ -39,7 +40,7 @@ namespace NzbDrone.Core.Test.Framework
[SetUp]
public virtual void SetupBase()
public virtual void CoreTestSetup()
{
LiveKernel = new StandardKernel();
}
@ -59,5 +60,14 @@ namespace NzbDrone.Core.Test.Framework
Db = MockLib.GetEmptyDatabase();
Mocker.SetConstant(Db);
}
protected ProgressNotification MockNotification
{
get
{
return new ProgressNotification("Mock notification");
}
}
}
}

Loading…
Cancel
Save