SeriesFolderFormat needs to be OS Agnostic

This commit is contained in:
Mark McDowall 2023-02-04 16:54:22 -08:00
parent 81d2b18ce1
commit 69f325b9dd
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ namespace NzbDrone.Core.Test.RootFolderTests
[Test] [Test]
public void should_get_unmapped_folders_inside_letter_subfolder() public void should_get_unmapped_folders_inside_letter_subfolder()
{ {
_namingConfig.SeriesFolderFormat = "{Series TitleFirstCharacter}\\{Series Title}"; _namingConfig.SeriesFolderFormat = "{Series TitleFirstCharacter}\\{Series Title}".AsOsAgnostic();
var rootFolderPath = @"C:\Test\TV".AsOsAgnostic(); var rootFolderPath = @"C:\Test\TV".AsOsAgnostic();
var rootFolder = Builder<RootFolder>.CreateNew() var rootFolder = Builder<RootFolder>.CreateNew()