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

Better test for Fluent.FreeDiskSpace()

pull/4/head
Mark McDowall 14 years ago
parent b3abcb6096
commit 1ff34c8e38

@ -97,7 +97,7 @@ namespace NzbDrone.Core.Test
public void FreeDiskSpace()
{
//Checks to ensure that the free space on the first is greater than 0 (It should be in 99.99999999999999% of cases... I hope)
var di = DriveInfo.GetDrives().First().RootDirectory;
var di = new DirectoryInfo(Directory.GetCurrentDirectory());
di.FreeDiskSpace().Should().BeGreaterThan(0);
}
}

Loading…
Cancel
Save