1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-15 08:29:27 +00:00

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

View file

@ -153,7 +153,7 @@ namespace NzbDrone.Core.Test.RootFolderTests
[Test]
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 rootFolder = Builder<RootFolder>.CreateNew()