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

24 lines
522 B

using NUnit.Framework;
using NzbDrone.Common.Serializer;
using NzbDrone.Test.Common;
namespace NzbDrone.Libraries.Test.JsonTests
{
[TestFixture]
public class JsonFixture : TestBase
{
public class TypeWithNumbers
{
public int Id { get; set; }
}
[Test]
public void should_be_able_to_deserialize_numbers()
{
var quality = new TypeWithNumbers { Id = 12 };
Json.Deserialize<TypeWithNumbers>(quality.ToJson());
}
}
}