diff --git a/Aaru.Tests/Filesystems/ReadOnlyFilesystemTest.cs b/Aaru.Tests/Filesystems/ReadOnlyFilesystemTest.cs index c411447e9..33b3fdfd8 100644 --- a/Aaru.Tests/Filesystems/ReadOnlyFilesystemTest.cs +++ b/Aaru.Tests/Filesystems/ReadOnlyFilesystemTest.cs @@ -234,6 +234,9 @@ namespace Aaru.Tests.Filesystems Dictionary BuildDirectory(IReadOnlyFilesystem fs, string path) { + if(path == "/") + path = ""; + Dictionary children = new Dictionary(); fs.ReadDir(path, out List contents);