Fixed IsValidPath usages

(cherry picked from commit 033936dce7e13c8ab2e38407782dc9cdd949460e)

Closes #3470
This commit is contained in:
Mark McDowall 2023-03-26 22:47:09 -07:00 committed by Bogdan
commit f26e0511d6
2 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
.Setup(x => x.FolderExists(It.IsAny<string>()))
.Returns((string path) =>
{
Ensure.That(path, () => path).IsValidPath();
Ensure.That(path, () => path).IsValidPath(PathValidationType.CurrentOs);
return false;
});
@ -91,7 +91,7 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
.Setup(x => x.FileExists(It.IsAny<string>()))
.Returns((string path) =>
{
Ensure.That(path, () => path).IsValidPath();
Ensure.That(path, () => path).IsValidPath(PathValidationType.CurrentOs);
return false;
});
}