Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/src/commit/6331a008fc06fbeff9772d72afb386eb0970f92f/tests/Recyclarr.Tests/TestLibrary/StreamBuilderTest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/tests/Recyclarr.Tests/TestLibrary/StreamBuilderTest.cs

15 lines
309 B

using Recyclarr.TestLibrary;
namespace Recyclarr.Tests.TestLibrary;
[TestFixture]
public class StreamBuilderTest
{
[Test]
public void FromString_UsingString_ShouldOutputSameString()
{
var stream = StreamBuilder.FromString("test");
stream.ReadToEnd().Should().Be("test");
}
}