Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/22ec10483ab772abac3025da5913c25ec2496cf6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
8 deletions
@ -13,17 +13,18 @@ using SubSonic.Repository;
namespace NzbDrone.Core.Test
{
[TestFixture]
// ReSharper disable InconsistentNaming
public class DbConfigControllerTest
{
[Test]
public void Overwrite_existing_value ( )
{
S tring key = "MY_KEY" ;
S tring value = "MY_VALUE" ;
const s tring key = "MY_KEY" ;
const s tring value = "MY_VALUE" ;
// setup
// Arrange
var repo = new Mock < IRepository > ( ) ;
var config = new Config ( ) { Key = key , Value = value } ;
var config = new Config { Key = key , Value = value } ;
repo . Setup ( r = > r . Single < Config > ( key ) ) . Returns ( config ) ;
var target = new DbConfigController ( new Mock < ILog > ( ) . Object , repo . Object ) ;
@ -38,12 +39,11 @@ namespace NzbDrone.Core.Test
[Test]
public void Add_new_value ( )
{
S tring key = "MY_KEY" ;
S tring value = "MY_VALUE" ;
const s tring key = "MY_KEY" ;
const s tring value = "MY_VALUE" ;
// setup
// Arrange
var repo = new Mock < IRepository > ( ) ;
var config = new Config ( ) { Key = key , Value = value } ;
repo . Setup ( r = > r . Single < Config > ( It . IsAny < string > ( ) ) ) . Returns < Config > ( null ) . Verifiable ( ) ;
var target = new DbConfigController ( new Mock < ILog > ( ) . Object , repo . Object ) ;