1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05: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()