mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
New: Removed chown and simplified chmod options for linux/osx
This commit is contained in:
parent
b0c7530981
commit
e5f48959eb
17 changed files with 216 additions and 140 deletions
|
@ -1048,7 +1048,7 @@ namespace NzbDrone.Common.Test.DiskTests
|
|||
.Returns(new List<IFileInfo>());
|
||||
|
||||
Mocker.GetMock<IDiskProvider>()
|
||||
.Setup(v => v.CopyPermissions(It.IsAny<string>(), It.IsAny<string>(), false));
|
||||
.Setup(v => v.CopyPermissions(It.IsAny<string>(), It.IsAny<string>()));
|
||||
}
|
||||
|
||||
private void WithRealDiskProvider()
|
||||
|
@ -1112,7 +1112,7 @@ namespace NzbDrone.Common.Test.DiskTests
|
|||
.Returns<string>(s => new FileStream(s, FileMode.Open, FileAccess.Read));
|
||||
|
||||
Mocker.GetMock<IDiskProvider>()
|
||||
.Setup(v => v.CopyPermissions(It.IsAny<string>(), It.IsAny<string>(), false));
|
||||
.Setup(v => v.CopyPermissions(It.IsAny<string>(), It.IsAny<string>()));
|
||||
}
|
||||
|
||||
private void WithMockMount(string root)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue