mirror of
https://github.com/Readarr/Readarr
synced 2026-05-08 21:13:58 +02:00
Better test for Fluent.FreeDiskSpace()
This commit is contained in:
parent
b3abcb6096
commit
1ff34c8e38
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ public void ToBestDateTime_Before_Yesterday()
|
||||||
public void FreeDiskSpace()
|
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)
|
//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);
|
di.FreeDiskSpace().Should().BeGreaterThan(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue