Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/eb29c5a837a2484d29237e70b99c06c46271fe3c?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

handling process end on integration tests.

pull/3113/head
kay.one 12 years ago
parent 1600d51707
commit eb29c5a837

@ -99,7 +99,7 @@ namespace NzbDrone.Integration.Test
if (eventArgs.Data.Contains("Press enter to exit"))
{
Assert.Fail("Process waiting for input");
process.StandardInput.WriteLine(" ");
}
Console.WriteLine(eventArgs.Data);
@ -111,7 +111,7 @@ namespace NzbDrone.Integration.Test
if (eventArgs.Data.Contains("Press enter to exit"))
{
Assert.Fail("Process waiting for input");
process.StandardInput.WriteLine(" ");
}
Console.WriteLine(eventArgs.Data);
@ -123,6 +123,8 @@ namespace NzbDrone.Integration.Test
process.BeginErrorReadLine();
process.BeginOutputReadLine();
process.Exited += (sender, eventArgs) => Assert.Fail("Process exited");
return process;
}

Loading…
Cancel
Save