diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2025-03-28 07:21:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-28 07:21:59 +0100 |
| commit | 7f5cc544df40bc79bf84c9adcdca35ea224c9c33 (patch) | |
| tree | da5aa2a6a96b96123723c23406470fee9df36d2a /tests/Jellyfin.Controller.Tests/DirectoryServiceTests.cs | |
| parent | f02190c394ad300c00dec4cc4f3b9d42ac6aaca2 (diff) | |
| parent | 15465afd8e7f8a72dd79654f458f8c298e776e02 (diff) | |
Merge pull request #13790 from crobibero/fix-build
Fix build and tests
Diffstat (limited to 'tests/Jellyfin.Controller.Tests/DirectoryServiceTests.cs')
| -rw-r--r-- | tests/Jellyfin.Controller.Tests/DirectoryServiceTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Jellyfin.Controller.Tests/DirectoryServiceTests.cs b/tests/Jellyfin.Controller.Tests/DirectoryServiceTests.cs index 9e7a8c844..1f59908a8 100644 --- a/tests/Jellyfin.Controller.Tests/DirectoryServiceTests.cs +++ b/tests/Jellyfin.Controller.Tests/DirectoryServiceTests.cs @@ -209,7 +209,7 @@ namespace Jellyfin.Controller.Tests fileSystemMock.Setup(f => f.GetFilePaths(It.Is<string>(x => x == path), false)).Returns(cachedPaths); var directoryService = new DirectoryService(fileSystemMock.Object); - var result = directoryService.GetFilePaths(path, true); + var result = directoryService.GetFilePaths(path); fileSystemMock.Setup(f => f.GetFilePaths(It.Is<string>(x => x == path), false)).Returns(newPaths); var secondResult = directoryService.GetFilePaths(path); @@ -241,7 +241,7 @@ namespace Jellyfin.Controller.Tests fileSystemMock.Setup(f => f.GetFilePaths(It.Is<string>(x => x == path), false)).Returns(cachedPaths); var directoryService = new DirectoryService(fileSystemMock.Object); - var result = directoryService.GetFilePaths(path, true); + var result = directoryService.GetFilePaths(path); fileSystemMock.Setup(f => f.GetFilePaths(It.Is<string>(x => x == path), false)).Returns(newPaths); var secondResult = directoryService.GetFilePaths(path, true); |
