Fixed compilation issue

This commit is contained in:
Mark McDowall 2013-11-20 22:41:53 -08:00
parent 2b682a4936
commit 3d23ac9234
1 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@ namespace NzbDrone.Core.Test.OrganizerTests
{
namingConfig = new NamingConfig();
Mocker.GetMock<INamingConfigService>()
.Setup(c => c.GetConfig()).Returns(namingConfig);
}
@ -40,7 +39,7 @@ namespace NzbDrone.Core.Test.OrganizerTests
.With(s => s.SeasonFolder = useSeasonFolder)
.Build();
Mocker.GetMock<IConfigService>().Setup(e => e.SeasonFolderFormat).Returns(seasonFolderFormat);
namingConfig.SeasonFolderFormat = seasonFolderFormat;
Subject.BuildFilePath(fakeSeries, seasonNumber, filename, ".mkv").Should().Be(expectedPath.AsOsAgnostic());
}