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

trying to fix nunit in teamcity.

pull/2/head
Keivan Beigi 12 years ago
parent 3162e4864d
commit ddff5dbad4

@ -41,7 +41,7 @@ namespace NzbDrone.Test.Common
[TearDown]
public void LoggingDownBase()
{
if (TestContext.CurrentContext.Result.Status == TestStatus.Passed)
if (TestContext.CurrentContext.Result.State == TestState.Failure || TestContext.CurrentContext.Result.State == TestState.Error)
{
ExceptionVerification.AssertNoUnexcpectedLogs();
}

@ -103,7 +103,7 @@ namespace NzbDrone.Test.Common
{
}
if (TestContext.CurrentContext.Result.Status == TestStatus.Failed)
if (TestContext.CurrentContext.Result.State == TestState.Failure || TestContext.CurrentContext.Result.State == TestState.Error)
{
var testName = TestContext.CurrentContext.Test.Name.ToLower();

Loading…
Cancel
Save