Added lost+found to SpecialFolders list

This commit is contained in:
Mark McDowall committed 2013-11-12 22:39:21 -08:00
1 parent 9fcd422f29
commit e045b6fc8f
2 files changed
+2 -1

No files matched your search

@@ -63,6 +63,7 @@ public void should_be_able_to_remove_root_dir()
Mocker.GetMock<IBasicRepository<RootFolder>>().Verify(c => c.Delete(1), Times.Once());
}
[Test]
public void None_existing_folder_returns_empty_list()
{
WithNoneExistingFolder();
@@ -30,7 +30,7 @@ public class RootFolderService : IRootFolderService
private readonly ISeriesRepository _seriesRepository;
private readonly IConfigService _configService;
private static readonly HashSet<string> SpecialFolders = new HashSet<string> { "$recycle.bin", "system volume information", "recycler" };
private static readonly HashSet<string> SpecialFolders = new HashSet<string> { "$recycle.bin", "system volume information", "recycler", "lost+found" };
public RootFolderService(IBasicRepository<RootFolder> rootFolderRepository,