From 6807f92f55d93819ce7faabb1dfda774e850c891 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 8 Feb 2015 21:59:20 -0800 Subject: [PATCH] AsOsAgnostic? --- src/NzbDrone.Core.Test/ParserTests/PathParserFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core.Test/ParserTests/PathParserFixture.cs b/src/NzbDrone.Core.Test/ParserTests/PathParserFixture.cs index 7da12e07b..f398b7c86 100644 --- a/src/NzbDrone.Core.Test/ParserTests/PathParserFixture.cs +++ b/src/NzbDrone.Core.Test/ParserTests/PathParserFixture.cs @@ -32,7 +32,7 @@ namespace NzbDrone.Core.Test.ParserTests [TestCase(@"C:\Test\Series\Season 1\2 Honor Thy Father (1080p HD).m4v", 1, 2)] public void should_parse_from_path(string path, int season, int episode) { - var result = Parser.Parser.ParsePath(path); + var result = Parser.Parser.ParsePath(path.AsOsAgnostic()); result.EpisodeNumbers.Should().HaveCount(1); result.SeasonNumber.Should().Be(season); result.EpisodeNumbers[0].Should().Be(episode);