Fixed spelling for Expected[LogType].

Fixed broken tests for GetEpisodesByParseResult.
This commit is contained in:
Mark McDowall 2011-12-19 16:58:26 -08:00
commit 69ddeeb0e3
20 changed files with 46 additions and 43 deletions

View file

@ -193,7 +193,7 @@ namespace NzbDrone.Core.Test
Parser.ParseTitle(title).Should().BeNull();
ExceptionVerification.ExcpectedWarns(1);
ExceptionVerification.ExpectedWarns(1);
}
@ -368,7 +368,7 @@ namespace NzbDrone.Core.Test
var result = Parser.ParseTitle(postTitle);
result.Should().BeNull();
ExceptionVerification.ExcpectedWarns(1);
ExceptionVerification.ExpectedWarns(1);
}
[TestCase("Lie.to.Me.S03.SUBPACK.DVDRip.XviD-REWARD")]
@ -380,7 +380,7 @@ namespace NzbDrone.Core.Test
result.Should().BeNull();
ExceptionVerification.ExcpectedWarns(1);
ExceptionVerification.ExpectedWarns(1);
}
[TestCase("Fussball Bundesliga 2010 2011 30 Spieltag FC Bayern Muenchen vs Bayer 04 Leverkusen German WS dTV XviD WoGS")]
@ -388,7 +388,7 @@ namespace NzbDrone.Core.Test
{
Parser.ParseTitle(title);
ExceptionVerification.IgnoreWarns();
ExceptionVerification.ExcpectedErrors(1);
ExceptionVerification.ExpectedErrors(1);
}
}
}